/* --- Core Brand Theme & Resets --- */
:root {
    --brand-navy: #0F172A;
    --brand-blue: #1E3A8A;
    --brand-emerald: #10B981;
    --brand-emerald-dark: #059669;
    --bg-light: #F8FAFC;
    --text-main: #334155;
    --text-dark: #0F172A;
    --card-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --card-shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #FFFFFF;
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- Header & Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 6%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #E2E8F0;
}

/* Base sizing wrapper container for inline vector integration */
.logo-container {
    display: flex;
    align-items: center;
    height: 54px; 
    min-width: 260px;
    overflow: visible !important;
}

/* Specific scaling handling for the 1400x420 canvas box layout rules */
.navbar-svg-logo {
    height: 100%;
    width: auto;
    display: block;
    overflow: visible !important;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 16px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #C62828; /* Uses logo matching red for hovering highlighting styles */
}

.cta-nav {
    background: var(--brand-navy);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.cta-nav:hover {
    background: #C62828;
    transform: translateY(-1px);
}

/* --- Hero Layout Section --- */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
    padding: 100px 8% 120px 8%;
    background: radial-gradient(100% 100% at top left, #F8FAFC 0%, #EFF6FF 100%);
}

.eyebrow {
    display: inline-block;
    background: #FFEAEA;
    color: #C62828;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(to right, var(--brand-navy), #C62828);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.primary-btn {
    background: #C62828;
    color: white;
    padding: 16px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(198, 40, 40, 0.25);
    transition: all 0.2s ease;
}

.primary-btn:hover {
    background: #A01B1B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 40, 40, 0.35);
}

.secondary-btn {
    border: 1px solid #CBD5E1;
    background: white;
    color: var(--text-dark);
    padding: 16px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.secondary-btn:hover {
    border-color: #C62828;
    background: var(--bg-light);
    color: #C62828;
}

/* Floating Card Element */
.basket-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.08);
    border: 1px solid #F1F5F9;
}

.basket-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.basket-list {
    list-style: none;
}

.basket-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #F1F5F9;
    font-weight: 500;
    color: var(--text-dark);
}

.basket-list li:last-child {
    border-bottom: none;
}

.basket-list .dot {
    width: 8px;
    height: 8px;
    background: #C62828;
    border-radius: 50%;
    margin-right: 14px;
}

/* --- Content Sections --- */
.section {
    padding: 100px 8%;
}

.alt {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-main);
    font-size: 1.1rem;
}

/* --- Core Layout Grids --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid #F1F5F9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.feature {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid #F1F5F9;
}

.feature h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature p {
    color: var(--text-main);
    font-size: 0.95rem;
}

/* --- Premium Banner & Infrastructure Info --- */
.infrastructure-section {
    background: var(--brand-navy);
    color: white;
    text-align: center;
    border-radius: 24px;
    margin: 40px 8%;
    padding: 80px 40px;
}

.infra-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.infra-content p {
    color: #94A3B8;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.badge-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

/* --- Premium Form Setup --- */
.form-section {
    display: flex;
    justify-content: center;
    background: var(--bg-light);
}

.form-container {
    background: #FFFFFF;
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    width: 100%;
    max-width: 550px;
    text-align: center;
}

.form-container h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-container p {
    margin-bottom: 32px;
    color: var(--text-main);
}

.premium-form .form-group {
    margin-bottom: 20px;
}

.premium-form input {
    width: 100%;
    padding: 16px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.premium-form input:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.submit-btn {
    width: 100%;
    background: var(--brand-navy);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.submit-btn:hover {
    background: #C62828;
}

/* --- Footer Area --- */
footer {
    background: #0F172A;
    color: #94A3B8;
    padding: 80px 8% 40px 8%;
    border-top: 1px solid #1E293B;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px; 
    width: 100%;
    overflow: visible !important;
}

.footer-svg-logo {
    height: 100%;
    width: auto;
    display: block;
    overflow: visible !important;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #1E293B;
    font-size: 0.85rem;
    width: 100%;
}

/* --- Responsive Layout Adjustments --- */
@media(max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 60px;
    }
    .hero h1 { font-size: 2.5rem; }
    .hero-text { margin: 0 auto 32px auto; }
    .hero-buttons { justify-content: center; }
    .navbar { padding: 12px 4%; }
    .nav-links { display: none; } 
    .feature-grid { grid-template-columns: 1fr; }
    
    .logo-container { height: 42px; min-width: 200px; }
    .footer-logo-container { height: 42px; }
}