:root {
    --bg-dark: #1E1E1E;
    --text-main: #F0EFEF;
    --accent-cyan: #6DD4BE;
    --accent-blue: #383ABD;
    --deep-blue: #281697;
}

@font-face {
    font-family: 'SamiFont'; 
    src: url('typography/Garet-Book.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

/* ==========================================================================
   LICENSE CONTAINER AND TABS
   ========================================================================== */

.licenses-section-container {
    max-width: 1800px;
    margin: 50px auto 20px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.licenses-title {
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);

    display: flex;
    justify-content: center;
    align-items: center;
    
    padding: 20px 0; 
    box-sizing: border-box;
}

.licenses-title h1 {
    margin: 0;
    padding: 0;
    
    font-family: 'SamiFont', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;

    background-clip: text;
    display: inline-block;
}

.license-toggle-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: 'SamiFont';
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 8px;
    opacity: 0.5;
    transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.tab-btn.active {
    opacity: 1;
    color: var(--accent-cyan);
    background-color: rgba(109, 212, 190, 0.08);
}

.tab-btn:hover {
    opacity: 0.9;
}


.license-tab-content {
    display: none;
    width: 80%;
    margin: 0 auto;
    box-sizing: border-box;
}

.license-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   COLUMNS
   ========================================================================== */

.individual-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 40px;
    width: 100%;
    align-items: start;
    box-sizing: border-box;
}

.sub-duration-column {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.sub-duration-title {
    font-family: 'SamiFont', sans-serif;
    font-size: 1.6rem;
    color: var(--text-main);
    font-weight: 600;
    margin: 0 0 25px 0;             
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
    width: 100%;
}

/* ==========================================================================
   CARD STRUCTURE
   ========================================================================== */


.internal-monthly-layout, .internal-yearly-layout {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
    width: 100%;
    box-sizing: border-box;
}

.license-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
}

.institutional-three-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 15px !important;
    width: 100%;
    box-sizing: border-box;
}

/* ==========================================================================
   CARD
   ========================================================================== */

.license-card1 {
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    color: var(--text-main);
    font-family: 'SamiFont';
    
    width: 100% !important; 
    margin: 0 !important;
    
    position: relative;
    box-sizing: border-box;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;

    min-height: 400px;
}

/* ==========================================================================
   CARD ELEMENTS
   ========================================================================== */

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 0;
}

.toggle-control {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.2);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid #6DD4BE;
}

.currency-badge {
    font-size: 0.75rem;
    color: #6DD4BE;
    font-weight: 600;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #F0EFEF;
    border-radius: 50%;
    box-shadow: 0 0 5px #F0EFEF;
}

.feature-preview {
    width: 100%;                    
    height: 90px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;

    flex-direction: column !important;
    gap: 4px;
    position: relative;
    padding: 12px 0 !important;
}

.price-display-box p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 300;
}

.price-display-box p strong {
    font-weight: 800;
    font-size: 1.15rem;
    color: #FFFFFF;
    margin-right: 2px;
}

.main-price {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 300;
}

.main-price strong {
    font-weight: 800;
    font-size: 1.4rem;
    color: #FFFFFF;
}

.main-price span {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-left: 2px;
}

.billing-note {
    font-size: 0.78rem;
    color: var(--accent-cyan);
    opacity: 0.85;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.save-badge {
    position: absolute;
    top: 5px;
    right: 8px;
    background: var(--accent-cyan);
    color: var(--bg-dark);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(109, 212, 190, 0.3);
    letter-spacing: 0.5px;
}

/* ==========================================================================
   TEXT CHECKMARKS
   ========================================================================== */

.info-grid {
    display: flex;
    flex-direction: column;
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.check_cross {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check_cross p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 300;
    opacity: 0.85;
    line-height: 1.3;
}

.icon {
    width: 14px;
    height: 14px;
    margin-right: 2px;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.check, .cross {
    color: var(--accent-cyan);
}


#institutional-content .licenses-container {
    max-width: 1150px;
    margin: 0 auto;
}