/* Getting Started - Professional Clean Styles */

/* Base Layout */
.gs-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.gs-section {
    padding: 120px 0;
}

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* Section Headers */
.gs-section-header {
    margin-bottom: 60px;
    text-align: center;
}

.gs-section-header h2 {
    font-size: var(--fs-h2);
    font-weight: 800;
    color: #1a2b48;
    margin-bottom: 24px;
    line-height: 1.1;
}

.gs-section-header p {
    font-size: 18px;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hero Section */
.gs-hero {
    background: #fff;
    padding: 140px 0 100px;
}

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

.gs-hero-content h1 {
    font-size: var(--fs-h1);
    font-weight: 800;
    color: #1a2b48;
    margin-bottom: 30px;
    line-height: 1.1;
}

.gs-hero-content p {
    font-size: 19px;
    color: #444;
    margin-bottom: 40px;
    line-height: 1.7;
}

.gs-hero-image img {
    width: 100%;
    border-radius: 12px;
}

/* Account Types Section */
.gs-accounts {
    background: #fcfcfc;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* Calculator Section */
.gs-calc-box {
    background: #0a0c0e;
    padding: 60px;
    border-radius: 12px;
    color: #fff;
    border: 1px solid #1a1a1a;
}

.calc-group-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}

.calc-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.calc-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-field label {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.calc-field select, 
.calc-field input {
    background: #111418;
    border: 1px solid #2a2a2a;
    padding: 14px 16px;
    color: #fff;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    transition: var(--transition-fast);
    width: 100%;
}

.calc-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 45px;
}

.calc-field select:focus, 
.calc-field input:focus {
    border-color: var(--primary-color);
    background: #161a1f;
}

.calc-stepper {
    display: flex;
    background: #111418;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    overflow: hidden;
}

.calc-stepper button {
    background: #1a1e23;
    border: none;
    color: var(--primary-color);
    width: 50px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.calc-stepper button:hover {
    background: #252a31;
}

.calc-stepper input {
    flex: 1;
    border: none !important;
    border-left: 1px solid #2a2a2a !important;
    border-right: 1px solid #2a2a2a !important;
    text-align: center;
    padding: 10px;
    border-radius: 0;
}

.calc-radio-group {
    display: flex;
    gap: 30px;
    height: 48px;
    align-items: center;
}

.calc-radio-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    color: #fff;
    user-select: none;
}

.calc-radio-group input {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #333;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s;
    background: transparent;
    padding: 0;
}

.calc-radio-group input:checked {
    border-color: var(--primary-color);
}

.calc-radio-group input:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.calc-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding-top: 40px;
    border-top: 1px solid #222;
}

.calc-results-table {
    margin-top: 60px;
    background: #111418;
    border-radius: 12px;
    border: 1px solid #222;
    overflow: hidden;
}

.calc-results-table table {
    width: 100%;
    border-collapse: collapse;
}

.calc-results-table th {
    background: #1a1e23;
    padding: 20px;
    text-align: left;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.calc-results-table td {
    padding: 25px 20px;
    border-top: 1px solid #222;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 800;
}

/* Steps Section */
.gs-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .calc-row { grid-template-columns: repeat(2, 1fr); }
    .gs-hero-grid { gap: 60px; }
}

@media (max-width: 768px) {
    .gs-hero-grid, .gs-steps-grid { grid-template-columns: 1fr; }
    .gs-hero-content h1 { font-size: 42px; }
    
    .gs-calc-box { 
        padding: 30px 20px; 
        border-radius: 8px;
    }

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

    .calc-btns {
        flex-direction: column;
    }

    .calc-btns .btn {
        width: 100%;
    }

    /* Stack Table Results on Mobile */
    .calc-results-table table, 
    .calc-results-table thead, 
    .calc-results-table tbody, 
    .calc-results-table th, 
    .calc-results-table td, 
    .calc-results-table tr {
        display: block;
    }
    
    .calc-results-table thead {
        display: none; /* Hide headers on mobile */
    }
    
    .calc-results-table td {
        border: none;
        border-bottom: 1px solid #222;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        font-size: 16px;
    }

    .calc-results-table td:last-child {
        border-bottom: none;
    }

    .calc-results-table td::before {
        content: attr(data-label);
        font-size: 12px;
        color: #888;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 1px;
    }
}

/* Information Table */
.gs-info-table-wrapper {
    margin-top: 40px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.gs-info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.gs-info-table th {
    background: #f8f9fb;
    padding: 20px;
    text-align: left;
    font-weight: 700;
    color: #1a2b48;
}

.gs-info-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

/* Info List - Two Columns Grid */
.gs-info-list {
    list-style: none;
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 80px;
    text-align: left;
    width: 100%;
}

@media (max-width: 992px) {
    .gs-info-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.gs-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    color: #444;
    line-height: 1.5;
}

.gs-info-list li svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--primary-color);
    margin-top: 2px;
}
