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

:root {
    --primary: #0f0f23;
    --secondary: #1a1a2e;
    --accent: #6c5ce7;
    --accent-light: #a29bfe;
    --success: #00b894;
    --warning: #fdcb6e;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.2);
    --border-radius: 12px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

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

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary);
}

.logo-icon {
    font-size: 24px;
    color: var(--accent);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: 0.3s ease;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    overflow: hidden;
    padding-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--gradient-primary);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.1;
}

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

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.btn-primary {
    padding: 14px 28px;
    background: var(--gradient-accent);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    padding: 14px 28px;
    background: transparent;
    color: var(--gray-700);
    text-decoration: none;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-stack {
    position: relative;
    width: 300px;
    height: 200px;
}

.credit-card {
    position: absolute;
    width: 280px;
    height: 180px;
    background: var(--gradient-primary);
    border-radius: 16px;
    padding: 24px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.card-1 {
    top: 0;
    left: 0;
    z-index: 2;
}

.card-2 {
    top: 20px;
    left: 20px;
    z-index: 1;
    opacity: 0.8;
}

.card-stack:hover .card-1 {
    transform: rotate(-5deg) translateY(-10px);
}

.card-stack:hover .card-2 {
    transform: rotate(5deg) translateY(10px);
}

.card-chip {
    width: 40px;
    height: 30px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 6px;
    margin-bottom: 32px;
}

.card-number {
    font-family: 'Space Grotesk', monospace;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.card-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.features {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

.services {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.services-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 40px;
}

.service-tabs {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tab {
    padding: 24px;
    background: var(--white);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--gray-300);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab.active {
    border-left-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.tab h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.tab p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.tab ul {
    list-style: none;
    margin-bottom: 20px;
}

.tab li {
    color: var(--gray-600);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.tab li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.btn-outline {
    padding: 10px 20px;
    background: transparent;
    color: var(--accent);
    text-decoration: none;
    border: 2px solid var(--accent);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
}

.services-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

.elem-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.elem-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.elem-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

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

.stats {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray-300);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: var(--gradient-primary);
    color: var(--white);
}

.page-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero p {
    color: var(--gray-200);
    font-size: 1.2rem;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: var(--white);
}

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

.about-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    width: 300px;
    height: 200px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.card-header {
    background: var(--gray-100);
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-400);
}

.dots span:first-child { background: #ff5f56; }
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:last-child { background: #27ca3f; }

.card-content {
    padding: 20px;
    height: calc(100% - 44px);
    display: flex;
    align-items: end;
}

.chart-placeholder {
    display: flex;
    align-items: end;
    gap: 8px;
    width: 100%;
    height: 80px;
}

.bar {
    flex: 1;
    background: var(--gradient-accent);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
}

.values {
    padding: 80px 0;
    background: var(--gray-100);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.value-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-wrapper {
    background: var(--gray-100);
    padding: 40px;
    border-radius: var(--border-radius);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--gray-600);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--gray-700);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 4px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-card,
.benefits-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.info-card h3,
.benefits-card h3 {
    color: var(--primary);
    margin-bottom: 24px;
    font-size: 1.25rem;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    font-size: 1.5rem;
    margin-top: 4px;
}

.info-content h4 {
    color: var(--gray-800);
    margin-bottom: 4px;
}

.info-content p,
.info-content a {
    color: var(--gray-600);
    text-decoration: none;
}

.info-content a:hover {
    color: var(--accent);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.benefit-icon {
    font-size: 1.2rem;
}

.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.modal-content h3 {
    color: var(--primary);
    margin-bottom: 12px;
}

.modal-content p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* Gold Loan Page Styles */
.gold-features {
    padding: 80px 0;
    background: var(--white);
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-highlight {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 40px;
    align-items: center;
    padding: 32px;
    background: var(--gray-100);
    border-radius: var(--border-radius);
}

.feature-highlight.reverse {
    grid-template-columns: 200px 1fr;
}

.feature-content h3 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.feature-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.6;
}

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

.feature-content li {
    color: var(--gray-600);
    margin-bottom: 8px;
}

.feature-visual {
    display: flex;
    justify-content: center;
}

.feature-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    min-width: 150px;
}

.timer,
.rate,
.percentage {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 14px;
}

.loan-process {
    padding: 80px 0;
    background: var(--gray-100);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--gray-600);
}

.loan-calculator {
    padding: 80px 0;
    background: var(--white);
}

.calculator-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--gray-100);
    padding: 40px;
    border-radius: var(--border-radius);
}

.calculator-header {
    text-align: center;
    margin-bottom: 32px;
}

.calculator-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary);
    margin-bottom: 8px;
}

.calculator-header p {
    color: var(--gray-600);
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.input-group label {
    color: var(--gray-700);
    margin-bottom: 8px;
    font-weight: 500;
}

.input-group input,
.input-group select {
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 16px;
}

.result {
    margin-top: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
    display: none;
    box-shadow: var(--shadow-sm);
}

/* Credit Cards Section */
.credit-cards-preview {
    padding: 80px 0;
    background: var(--white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.bank-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.bank-logo {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.bank-card h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.bank-card p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.card-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.card-benefits span {
    color: var(--gray-600);
    font-size: 14px;
}

.view-all {
    text-align: center;
}

/* Credit Card Modal */
.credit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.credit-modal .modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.modal-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-500);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: var(--gray-700);
}

.modal-body {
    padding: 0 24px 24px;
}

.modal-bank-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--gray-100);
    border-radius: 8px;
}

.modal-bank-logo {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.modal-bank-details h4 {
    color: var(--primary);
    margin-bottom: 4px;
}

.modal-bank-details p {
    color: var(--gray-600);
    font-size: 14px;
}

.modal-features {
    margin: 20px 0;
}

.modal-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-check {
    color: var(--success);
    font-weight: bold;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.modal-buttons .btn-primary,
.modal-buttons .btn-secondary {
    flex: 1;
    text-align: center;
}

/* Credit Cards Page */
.credit-cards-section {
    padding: 80px 0;
    background: var(--white);
}

.credit-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.credit-card-item {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.credit-card-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    padding: 24px;
    background: var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bank-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bank-logo-large {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.bank-details h3 {
    color: var(--primary);
    margin-bottom: 4px;
}

.bank-details p {
    color: var(--gray-600);
    font-size: 14px;
}

.card-visual {
    display: flex;
    align-items: center;
}

.mini-card {
    width: 80px;
    height: 50px;
    border-radius: 8px;
    padding: 8px;
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.idfc-card {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.axis-card {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.card-chip-mini {
    width: 12px;
    height: 8px;
    background: #ffd700;
    border-radius: 2px;
}

.card-text {
    font-size: 8px;
    letter-spacing: 0.5px;
}

.card-benefits {
    padding: 24px;
}

.card-benefits h4 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.card-benefits ul {
    list-style: none;
}

.card-benefits li {
    color: var(--gray-600);
    margin-bottom: 8px;
    font-size: 14px;
}

.card-footer {
    padding: 0 24px 24px;
}

.features-section {
    margin-top: 60px;
}

.features-section h2 {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary);
    margin-bottom: 40px;
}

.features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-item {
    text-align: center;
    padding: 24px;
}

.feature-item .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.feature-item h4 {
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--gray-600);
    font-size: 14px;
}

.cta-section {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--gray-300);
    margin-bottom: 32px;
}

.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: var(--gray-400);
}

.footer-info h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-info p {
    color: var(--gray-400);
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-700);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--gray-400);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

/* Legal Content Pages */
.legal-content {
    padding: 80px 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: var(--primary);
    margin: 32px 0 16px 0;
    font-size: 1.5rem;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .feature-highlight {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-highlight.reverse {
        grid-template-columns: 1fr;
    }
    
    .input-row {
        grid-template-columns: 1fr;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .credit-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .card-stack {
        width: 250px;
        height: 160px;
    }
    
    .credit-card {
        width: 230px;
        height: 140px;
        padding: 16px;
    }
    
    .contact-form-wrapper,
    .calculator-wrapper {
        padding: 24px;
    }
    
    .credit-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .card-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}