:root {
    --primary: #ea0953;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--dark);
    line-height: 1.6;
}
.hero-content h1{
    color: var(--white);
}
.hero-content{
    text-align: left;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.bg-light { background-color: var(--light); }

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    filter: brightness(1.2);
}

/* Hero */
.hero {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-benefits {
    list-style: none;
    margin: 20px 0;
}

.hero-benefits li::before {
    content: "✓ ";
    color: var(--primary);
    font-weight: bold;
}

/* Grid System */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    padding: 40px 0;
}

/* Sections */
section {
    padding: 60px 0;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.comparison-table th {
    background: var(--dark);
    color: white;
    padding: 15px;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

/* Process */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step span {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 10px;
}

/* Tools */
.tool-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--light);
}

.tool-form input, .tool-form select, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea { height: 120px; }

/* FAQ */
.faq-item {
    margin-bottom: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 5px;
}

/* Footer */
.cta-footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 20px;
}

.footer-bottom {
    margin-top: 60px;
    font-size: 0.8rem;
    border-top: 1px solid #222;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .grid-2 { grid-template-columns: 1fr; }
}



.text-primary { color: var(--primary); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #002a6b 100%);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.hero-badge {
    background: rgba(234, 9, 83, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid var(--primary);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 20px; }

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    transition: 0.3s transform ease;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(234, 9, 83, 0.3); }

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 13px 35px;
    border-radius: 8px;
    text-decoration: none;
    margin-left: 15px;
}

/* Market Selector Tabs */
.market-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 25px;
    border: 1px solid var(--light);
    background: white;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Comparison Box */
.comparison-box {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.box-half {
    flex: 1;
    padding: 40px;
    text-align: center;
}

.before { background: #f9f9f9; border-right: 1px solid #eee; }
.after { background: var(--white); border-left: 4px solid var(--primary); }

.box-half span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 15px;
}

/* Calculator Card */
.calc-card {
    background: var(--dark);
    color: white;
    padding: 50px;
    border-radius: 20px;
}

.input-group label { display: block; margin-bottom: 8px; }
.input-group input, .input-group select {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: none;
}

.result-box {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

/* FAQ Accordion */
details {
    background: white;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
}

summary { font-weight: bold; font-size: 1.1rem; }

/* Responsive Styling */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .comparison-box { flex-direction: column; }
    .hero-btns a { display: block; margin: 10px 0; }
    .grid-3 { grid-template-columns: 1fr; }
}

.info-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.intro-text {
    color: var(--tertiary);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

/* Interactive Grid */
.interactive-philosophy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    perspective: 1000px; /* Essential for 3D effect */
}

/* The Flip Card Container */
.philosophy-card {
    height: 250px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* Hover State */
.philosophy-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(1, 26, 65, 0.05);
}

/* Front Side Styling */
.card-front {
    background: var(--light);
    border: 1px solid rgba(1, 26, 65, 0.1);
}

.card-front i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.card-front h3 {
    color: var(--dark);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Back Side Styling */
.card-back {
    background: var(--dark);
    color: #ffffff;
    transform: rotateY(180deg);
}

.card-back p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.brand-mission {
    margin-top: 60px;
    font-size: 1.1rem;
    color: var(--tertiary);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .interactive-philosophy {
        grid-template-columns: 1fr;
    }
}

.process-wrapper {
    position: relative;
    margin-top: 60px;
    padding: 20px 0;
}

/* Horizontal line behind steps */
.progress-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(1, 26, 65, 0.1);
    z-index: 1;
}

.process-steps-interactive {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.step-item {
    text-align: center;
    transition: all 0.4s ease;
}

/* The Number Bubble */
.step-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 4px solid var(--light);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 800;
    font-size: 1.4rem;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--tertiary);
    line-height: 1.4;
    opacity: 0.8;
}

.step-tag {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* INTERACTION LOGIC */
.step-item:hover .step-number {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(234, 9, 83, 0.4);
}

.step-item:hover .step-content h3 {
    color: var(--primary);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .progress-line {
        display: none; /* Hide line on mobile */
    }
    .process-steps-interactive {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 40px;
    }
    .step-item {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }
    .step-number {
        margin: 0;
        flex-shrink: 0;
    }
}