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

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: #1a1a2e;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        radial-gradient(circle at 20% 50%, #16213e 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, #0f3460 0%, transparent 60%),
        radial-gradient(circle at 40% 80%, #e94560 0%, transparent 60%),
        linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #e94560;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 98px, rgba(78, 205, 196, 0.05) 100px),
        repeating-linear-gradient(0deg, transparent, transparent 98px, rgba(45, 90, 135, 0.05) 100px);
    opacity: 0.4;
    animation: gridPulse 8s ease-in-out infinite alternate;
}

@keyframes gridPulse {
    0% { opacity: 0.2; }
    100% { opacity: 0.4; }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.5rem;
}

.title-main {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #e94560, #f39c12, #0f3460);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 6s ease-in-out infinite alternate;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

@keyframes titleGlow {
    0% { 
        background-position: 0% 50%;
        filter: drop-shadow(0 0 20px #e94560);
    }
    100% { 
        background-position: 100% 50%;
        filter: drop-shadow(0 0 30px #f39c12);
    }
}

.title-sub {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.3rem;
    color: #f39c12;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e8f4f8;
    opacity: 0.9;
    line-height: 1.8;
    font-style: italic;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-primary {
    background: linear-gradient(135deg, #e94560, #0f3460);
    border: 2px solid #f39c12;
    padding: 1.2rem 2.5rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
    position: relative;
    overflow: hidden;
    font-family: 'Playfair Display', serif;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.3), transparent);
    transition: left 0.6s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.6);
    border-color: #ffffff;
}

.partner-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partner-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(22, 33, 62, 0.8);
    border: 1px solid #0f3460;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.partner-btn:hover {
    background: rgba(233, 69, 96, 0.3);
    border-color: #f39c12;
    transform: translateX(5px);
}

.partner-logo {
    font-size: 1.5rem;
}

.partner-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Card Mockup */
.card-mockup {
    perspective: 1200px;
    display: flex;
    justify-content: center;
}

.card-face {
    width: 380px;
    height: 240px;
    background: 
        linear-gradient(135deg, #1a2332 0%, #2d5a87 50%, #1a2332 100%),
        radial-gradient(circle at 30% 30%, rgba(78, 205, 196, 0.2) 0%, transparent 50%);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    border: 2px solid #4ecdc4;
    box-shadow: 
        0 20px 60px rgba(45, 90, 135, 0.4),
        inset 0 1px 0 rgba(232, 244, 248, 0.1);
    transform: rotateY(15deg) rotateX(5deg);
    animation: cardFloat 8s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: rotateY(15deg) rotateX(5deg) translateY(0px); }
    50% { transform: rotateY(15deg) rotateX(5deg) translateY(-15px); }
}

.card-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 8px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.card-number {
    font-size: 1.6rem;
    color: #e8f4f8;
    margin-bottom: 1.5rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.card-name {
    color: #4ecdc4;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
}

/* Features Section */
.features {
    padding: 8rem 3rem;
    background: 
        radial-gradient(circle at 50% 50%, rgba(22, 33, 62, 0.4) 0%, transparent 70%),
        linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    border-top: 1px solid #0f3460;
    border-bottom: 1px solid #0f3460;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    background: linear-gradient(45deg, #e94560, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-panel {
    background: 
        linear-gradient(135deg, rgba(22, 33, 62, 0.3), rgba(15, 52, 96, 0.1)),
        rgba(26, 26, 46, 0.9);
    border: 2px solid transparent;
    background-clip: padding-box;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-panel::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #0f3460, #e94560, #16213e, #f39c12);
    background-size: 400% 400%;
    z-index: -1;
    border-radius: 15px;
    animation: borderFlow 8s ease infinite;
}

@keyframes borderFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.feature-panel:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(233, 69, 96, 0.4);
}

.panel-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px #e94560);
}

.feature-panel h3 {
    color: #f39c12;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.feature-panel p {
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.7;
}

/* Comparison Section */
.comparison {
    padding: 8rem 3rem;
    background: 
        radial-gradient(circle at 80% 20%, rgba(139, 69, 19, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0f0f0f 0%, #1a1611 100%);
    border-top: 1px solid #8b4513;
    border-bottom: 1px solid #8b4513;
}

.comparison-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2px;
    background: linear-gradient(45deg, #8b4513, #d4af37);
    padding: 2px;
    border-radius: 15px;
    overflow: hidden;
}

.comparison-header {
    display: contents;
}

.product-name {
    background: #2c1810;
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 700;
    color: #f5f1eb;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

.comparison-row {
    display: contents;
}

.feature-name {
    background: rgba(44, 24, 16, 0.8);
    padding: 1.5rem;
    font-weight: 600;
    color: #f5f1eb;
}

.feature-value {
    background: rgba(15, 15, 15, 0.9);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    color: #f5f1eb;
    opacity: 0.8;
}

.feature-value.active {
    background: linear-gradient(135deg, #8b4513, #2c1810);
    color: #f5f1eb;
    font-weight: 700;
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Tools Section */
.tools {
    padding: 8rem 3rem;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0f0f0f 0%, #1a1611 100%);
    border-top: 1px solid #8b4513;
    border-bottom: 1px solid #8b4513;
}

.tools-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
}

.calculator-panel {
    background: 
        linear-gradient(135deg, rgba(44, 24, 16, 0.4), rgba(139, 69, 19, 0.2)),
        rgba(15, 15, 15, 0.9);
    border: 2px solid #8b4513;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(139, 69, 19, 0.3),
        inset 0 1px 0 rgba(245, 241, 235, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
}

.calculator-panel::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: linear-gradient(90deg, #8b4513, #d4af37);
    animation: scanLine 4s linear infinite;
}

@keyframes scanLine {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.calculator-panel h3 {
    color: #d4af37;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.calc-input {
    margin-bottom: 1.5rem;
}

.calc-input label {
    display: block;
    margin-bottom: 0.8rem;
    color: #8b4513;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
}

.calc-input input {
    width: 100%;
    padding: 1rem;
    background: rgba(15, 15, 15, 0.8);
    border: 2px solid #2c1810;
    color: #f5f1eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.calc-input input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.calc-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #8b4513, #2c1810);
    border: 2px solid #d4af37;
    color: #f5f1eb;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
    font-family: 'Playfair Display', serif;
}

.calc-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.4);
}

.calc-result {
    background: rgba(15, 15, 15, 0.9);
    padding: 1.5rem;
    text-align: center;
    color: #d4af37;
    font-weight: 600;
    border: 2px solid #8b4513;
    border-radius: 8px;
    font-size: 1.1rem;
}

/* Credit Card Features Section */
.card-features {
    padding: 8rem 3rem;
    background: 
        radial-gradient(circle at 30% 70%, rgba(233, 69, 96, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    border-top: 1px solid #0f3460;
    border-bottom: 1px solid #0f3460;
}

.card-features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.card-type {
    background: 
        linear-gradient(135deg, rgba(22, 33, 62, 0.4), rgba(15, 52, 96, 0.2)),
        rgba(26, 26, 46, 0.9);
    border: 2px solid #0f3460;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 15px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.card-type:hover {
    transform: translateY(-10px);
    border-color: #e94560;
    box-shadow: 0 25px 50px rgba(233, 69, 96, 0.3);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px #f39c12);
}

.card-type h3 {
    color: #f39c12;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.card-type ul {
    list-style: none;
    text-align: left;
}

.card-type ul li {
    padding: 0.8rem 0;
    color: #ffffff;
    opacity: 0.9;
    position: relative;
    padding-left: 2rem;
}

.card-type ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e94560;
    font-weight: bold;
}

/* Founder Vision Section */
.founder-vision {
    padding: 8rem 3rem;
    background: 
        radial-gradient(circle at 80% 20%, rgba(15, 52, 96, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 1px solid #0f3460;
    border-bottom: 1px solid #0f3460;
}

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

.founder-info {
    text-align: center;
}

.founder-avatar {
    font-size: 5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px #f39c12);
}

.founder-info h2 {
    background: linear-gradient(45deg, #e94560, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.founder-info blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.founder-signature {
    color: #f39c12;
    font-size: 1.1rem;
    font-weight: 600;
}

.vision-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    background: 
        linear-gradient(135deg, rgba(22, 33, 62, 0.6), rgba(15, 52, 96, 0.3)),
        rgba(26, 26, 46, 0.9);
    border: 2px solid #0f3460;
    padding: 2rem;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #e94560;
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #e94560;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #f39c12;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Security Section */
.security {
    padding: 8rem 3rem;
    background: 
        radial-gradient(circle at 70% 30%, rgba(15, 52, 96, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 1px solid #0f3460;
    border-bottom: 1px solid #0f3460;
}

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

.shield-icon {
    font-size: 10rem;
    text-align: center;
    background: linear-gradient(45deg, #0f3460, #e94560);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px #e94560);
    animation: shieldPulse 6s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.security-info h2 {
    background: linear-gradient(45deg, #0f3460, #e94560);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.security-features {
    list-style: none;
}

.security-features li {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(233, 69, 96, 0.2);
    position: relative;
    padding-left: 3rem;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
}

.security-features li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 3rem;
    background: 
        radial-gradient(circle at 50% 50%, rgba(15, 52, 96, 0.3) 0%, transparent 70%),
        radial-gradient(circle at 50% 50%, rgba(233, 69, 96, 0.2) 0%, transparent 70%),
        #1a1a2e;
    text-align: center;
    position: relative;
    border-top: 3px solid #e94560;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    background: linear-gradient(45deg, #e94560, #f39c12, #0f3460);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 6s ease-in-out infinite alternate;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: #ffffff;
    opacity: 0.9;
    font-style: italic;
}

.cta-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.cta-switch {
    background: linear-gradient(135deg, #e94560, #0f3460);
    border: 3px solid #f39c12;
    padding: 2rem 4rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s;
    box-shadow: 
        0 15px 50px rgba(233, 69, 96, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    font-family: 'Playfair Display', serif;
}

.cta-switch::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.3), transparent);
    transition: left 0.6s;
}

.cta-switch:hover::before {
    left: 100%;
}

.cta-switch:hover {
    transform: scale(1.05);
    box-shadow: 
        0 20px 60px rgba(233, 69, 96, 0.6),
        0 0 100px rgba(243, 156, 18, 0.3);
}

.partner-cta {
    text-align: center;
}

.partner-cta h3 {
    color: #f39c12;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 600px;
}

.partner-card {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.3));
    border: 2px solid #0f3460;
    border-radius: 15px;
    padding: 2rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.1), transparent);
    transition: left 0.6s;
}

.partner-card:hover::before {
    left: 100%;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: #e94560;
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
}

.partner-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.partner-icon {
    font-size: 2rem;
}

.partner-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f39c12;
}

.partner-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.apply-text {
    font-weight: 600;
    color: #e94560;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: #1a1a2e;
    border-top: 2px solid #0f3460;
    padding: 4rem 3rem 2rem;
    box-shadow: 0 -10px 30px rgba(15, 52, 96, 0.2);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #f39c12;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0.8;
}

.footer-section ul li a:hover {
    color: #e94560;
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(243, 156, 18, 0.2);
    color: #ffffff;
    opacity: 0.7;
}

/* Legal Pages Styling */
.legal-page {
    min-height: 100vh;
    padding: 5rem 3rem;
    background: 
        radial-gradient(circle at 30% 40%, rgba(59, 2, 112, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(111, 0, 255, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #000 0%, #1a0033 100%);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #6F00FF;
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(111, 0, 255, 0.3);
}

.legal-container h1 {
    background: linear-gradient(45deg, #6F00FF, #E9B3FB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
    font-weight: 700;
}

.legal-content h2 {
    color: #E9B3FB;
    margin: 3rem 0 1.5rem 0;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 600;
}

.legal-content p {
    color: #FFF1F1;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Contact Page Styling */
.contact-page {
    min-height: 100vh;
    padding: 5rem 3rem;
    background: 
        radial-gradient(circle at 20% 30%, rgba(111, 0, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(233, 179, 251, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #000 0%, #0d001a 100%);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-container h1 {
    background: linear-gradient(45deg, #6F00FF, #E9B3FB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.contact-info h2, .contact-form h2 {
    color: #E9B3FB;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #3B0270;
    border-radius: 15px;
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: #6F00FF;
    box-shadow: 0 10px 30px rgba(111, 0, 255, 0.2);
}

.contact-item h3 {
    color: #6F00FF;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
}

.contact-item p {
    color: #FFF1F1;
    line-height: 1.7;
    opacity: 0.9;
}

.contact-form {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #6F00FF;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(111, 0, 255, 0.3);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #6F00FF;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #3B0270;
    color: #FFF1F1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E9B3FB;
    box-shadow: 0 0 20px rgba(233, 179, 251, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #6F00FF, #3B0270);
    border: 2px solid #E9B3FB;
    color: #FFF1F1;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(111, 0, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(111, 0, 255, 0.4);
}

.back-link {
    text-align: center;
    margin-top: 3rem;
}

.back-link a {
    color: #E9B3FB;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.back-link a:hover {
    color: #6F00FF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 2rem;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .card-face {
        width: 320px;
        height: 200px;
        transform: none;
    }
    
    .security-content, .vision-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .vision-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .card-features-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        font-size: 0.9rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .legal-container {
        padding: 2.5rem;
    }
    
    .features, .card-features, .founder-vision, .comparison, .tools, .security, .cta-section {
        padding: 5rem 2rem;
    }
}