/* =====================================================
   NAXSOL ENTERPRISES LTD - Complete Stylesheet  
   Formal, professional design system with teal-orange theme
   ===================================================== */

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    letter-spacing: 0.35px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.8rem;
    color: #111827;
}

h1 { font-size: 3.5rem; font-weight: 800; letter-spacing: -0.5px; }
h2 { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.3px; }
h3 { font-size: 1.875rem; font-weight: 700; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

p {
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.75;
}

ul, ol {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

/* === COLOR PALETTE === */
:root {
    --tgc-primary: #0d9488;
    --tgc-primary-light: #14b8a6;
    --tgc-primary-dark: #0a7860;
    --tgc-accent: #ea580c;
    --tgc-accent-light: #f97316;
    --tgc-accent-dark: #ca4504;
    --tgc-success: #059669;
    --tgc-success-light: #10b981;
    --tgc-warning: #dc2626;
    --tgc-info: #0891b2;
    --tgc-dark: #0f172a;
    --tgc-dark-secondary: #1e293b;
    --tgc-light: #f8fafc;
    --tgc-light-secondary: #f1f5f9;
    --tgc-gray: #475569;
    --tgc-gray-light: #cbd5e1;
    --tgc-border: #e2e8f0;
    --tgc-white: #ffffff;
}

/* === SPACING === */
.tgc-mb-1 { margin-bottom: 1rem; }
.tgc-mb-2 { margin-bottom: 2rem; }
.tgc-mb-3 { margin-bottom: 3rem; }
.tgc-mt-1 { margin-top: 1rem; }
.tgc-mt-2 { margin-top: 2rem; }
.tgc-mt-3 { margin-top: 3rem; }
.tgc-py-3 { padding: 3rem 0; }
.tgc-py-5 { padding: 5rem 0; }

/* === CONTAINER & GRID === */
.tgc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.tgc-container-fluid {
    width: 100%;
    padding: 0 24px;
}

.tgc-grid {
    display: grid;
    gap: 2rem;
}

.tgc-grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.tgc-grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.tgc-flex {
    display: flex;
    gap: 1.5rem;
}

.tgc-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tgc-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* === HEADER === */
.tgc-header {
    background: linear-gradient(135deg, var(--tgc-dark) 0%, var(--tgc-dark-secondary) 100%);
    color: var(--tgc-white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15);
}

.tgc-header__main {
    width: 100%;
}

.tgc-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.tgc-header__logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--tgc-white);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.tgc-header__logo:hover {
    opacity: 0.9;
}

.tgc-header__logo-mark {
    width: 44px;
    height: 44px;
    background: var(--tgc-accent);
    color: var(--tgc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 900;
}

.tgc-header__logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Mobile Menu Toggle */
.tgc-header__menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 1001;
}

.tgc-header__menu-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: all 0.3s ease;
    
}

.tgc-header__menu-toggle-icon span {
    width: 24px;
    height: 2.5px;
    background: var(--tgc-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.tgc-header__menu-toggle.active .tgc-header__menu-toggle-icon {
    transform: rotate(45deg);
}

.tgc-header__menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.tgc-header__menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.tgc-header__menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation */
.tgc-header__nav {
    display: flex;
}

.tgc-header__nav-list {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}

.tgc-header__nav-item {
    position: relative;
}

.tgc-header__nav-link {
    display: block;
    color: var(--tgc-white);
    padding: 12px 18px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.tgc-header__nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.tgc-header__nav-item--secondary .tgc-header__nav-link {
    color: var(--tgc-accent-light);
    font-weight: 600;
}

/* === BUTTONS === */
.tgc-btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.3px;
}

.tgc-btn--primary {
    background: var(--tgc-primary);
    color: var(--tgc-white);
}

.tgc-btn--primary:hover {
    background: var(--tgc-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.25);
}

.tgc-btn--outline {
    background: transparent;
    color: var(--tgc-primary);
    border: 2px solid var(--tgc-primary);
}

.tgc-btn--outline:hover {
    background: var(--tgc-primary);
    color: var(--tgc-white);
}

.tgc-btn--accent {
    background: var(--tgc-accent);
    color: var(--tgc-white);
}

.tgc-btn--accent:hover {
    background: var(--tgc-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(124, 58, 237, 0.25);
}

.tgc-btn--sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.tgc-btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.tgc-btn--block {
    width: 100%;
    display: block;
}

/* === SECTIONS === */
.tgc-section {
    padding: 4rem 0;
}

.tgc-section--featured {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(234, 88, 12, 0.05) 100%);
}

.tgc-section--dark {
    background: var(--tgc-dark-secondary);
    color: var(--tgc-white);
}

.tgc-section--light-bg {
    background: var(--tgc-light-secondary);
}

.tgc-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.tgc-section-title h2 {
    color: var(--tgc-dark);
    margin-bottom: 1rem;
}

/* === HERO === */
.tgc-hero {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--tgc-dark) 0%, var(--tgc-dark-secondary) 100%);
    color: var(--tgc-white);
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--tgc-primary);
}

.tgc-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.tgc-hero__content h1 {
    color: var(--tgc-white);
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.8px;
}

.tgc-hero__content > p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.tgc-hero__actions {
    display: flex;
    gap: 12px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tgc-hero__meta {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.tgc-hero__image {
    text-align: center;
}

.tgc-hero__image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* === CARDS === */
.tgc-card {
    background: var(--tgc-white);
    border: 1px solid var(--tgc-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tgc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--tgc-primary-light);
}

.tgc-card__header {
    padding: 2rem;
    border-bottom: 1px solid var(--tgc-border);
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tgc-card__body {
    padding: 2rem;
}

.tgc-card__footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--tgc-border);
    background: var(--tgc-light);
}

.tgc-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--tgc-dark);
}

.tgc-card__description {
    color: var(--tgc-gray);
    font-size: 0.95rem;
}

/* Platform/Product Cards */
.tgc-platform-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tgc-platform-card__logo {
    max-width: 120px;
    height: auto;
    margin: 0 auto;
}

.tgc-platform-card__rating {
    background: var(--tgc-light-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.tgc-platform-card__rating-label {
    font-size: 0.85rem;
    color: var(--tgc-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tgc-platform-card__rating-score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--tgc-primary);
    margin: 0.5rem 0;
}

.tgc-platform-card__rating-verdict {
    font-size: 0.95rem;
    color: var(--tgc-success);
    font-weight: 600;
}

.tgc-platform-card__features {
    list-style: none;
    margin: 1.5rem 0;
}

.tgc-platform-card__features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--tgc-border);
    color: var(--tgc-gray);
    display: flex;
    align-items: center;
    margin-left: 0;
}

.tgc-platform-card__features li:before {
    content: "✓";
    color: var(--tgc-success);
    font-weight: 700;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.tgc-platform-card__disclaimer {
    font-size: 0.8rem;
    color: var(--tgc-gray);
    font-style: italic;
    margin-top: 1rem;
}

/* === BADGES === */
.tgc-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tgc-badge--success {
    background: var(--tgc-success);
    color: var(--tgc-white);
}

.tgc-badge--primary {
    background: var(--tgc-primary-light);
    color: var(--tgc-white);
}

.tgc-badge--accent {
    background: var(--tgc-accent-light);
    color: var(--tgc-white);
}

/* === FEATURE BOX === */
.tgc-feature-box {
    padding: 2rem;
    background: var(--tgc-light-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--tgc-primary);
}

.tgc-feature-box__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tgc-feature-box h3 {
    color: var(--tgc-dark);
    margin-bottom: 1rem;
}

.tgc-feature-box p {
    color: var(--tgc-gray);
    margin: 0;
}

/* === COOKIES CONSENT MODAL === */
.tgc-cookies-modal {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9998;
    max-width: 420px;
    width: calc(100% - 40px);
}

.tgc-cookies-modal.show {
    display: block;
    animation: slideInRight 0.4s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tgc-cookies-modal__content {
    background: var(--tgc-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.tgc-cookies-modal__content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--tgc-dark);
}

.tgc-cookies-modal__content p {
    font-size: 0.9rem;
    color: var(--tgc-gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.tgc-cookies-modal__options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.tgc-cookies-modal__option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.85rem;
}

.tgc-cookies-modal__option input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.tgc-cookies-modal__option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.tgc-cookies-modal__option span {
    color: var(--tgc-dark);
}

.tgc-cookies-modal__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tgc-cookies-modal__actions .tgc-btn {
    flex: 1;
    min-width: 100px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
}

.tgc-cookies-modal__footer {
    margin-top: 1rem;
    margin-bottom: 0 !important;
    font-size: 0.75rem;
    text-align: center;
}

.tgc-cookies-modal__footer a {
    color: var(--tgc-primary);
    text-decoration: underline;
}

.tgc-cookies-modal__footer a:hover {
    color: var(--tgc-accent);
}

/* === AGE VERIFICATION MODAL === */
.tgc-age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tgc-age-verification.show {
    display: flex;
}

.tgc-age-verification__content {
    background: var(--tgc-white);
    border-radius: 16px;
    padding: 3rem;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tgc-age-verification__icon {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--tgc-warning);
    margin-bottom: 1rem;
    background: rgba(220, 38, 38, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.tgc-age-verification__content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--tgc-dark);
}

.tgc-age-verification__content p {
    color: var(--tgc-gray);
    margin-bottom: 1rem;
}

.tgc-age-verification__subtext {
    font-size: 0.95rem;
    color: var(--tgc-gray);
    font-style: italic;
    margin-bottom: 2rem !important;
}

.tgc-age-verification__actions {
    display: flex;
    gap: 12px;
}

.tgc-age-verification__actions .tgc-btn {
    flex: 1;
}

/* === FOOTER === */
.tgc-footer {
    background: var(--tgc-dark-secondary);
    color: var(--tgc-white);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 4px solid var(--tgc-primary);
}

.tgc-footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tgc-footer__brand {
    max-width: 400px;
}

.tgc-footer__logo {
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.tgc-footer__logo-mark {
    width: 36px;
    height: 36px;
    background: var(--tgc-accent);
    color: var(--tgc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: 800;
}

.tgc-footer__tagline {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.tgc-footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.tgc-footer__links-column h2 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--tgc-white);
}

.tgc-footer__links-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tgc-footer__links-column li {
    margin: 0.75rem 0;
}

.tgc-footer__links-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.tgc-footer__links-column a:hover {
    color: var(--tgc-accent-light);
}

/* Footer Logos */
.tgc-footer-logos {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: stretch;
}

.tgc-footer-logos a {
    flex: 1;
    min-width: calc(25% - 1.125rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tgc-footer-logos a:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.tgc-footer-logos img {
    height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.tgc-footer-logos a:hover img {
    opacity: 1;
}

/* Footer Responsible Section */
.tgc-footer__responsible {
    background: rgba(220, 38, 38, 0.08);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--tgc-warning);
}

.tgc-footer__responsible h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--tgc-white);
}

.tgc-footer__responsible p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.tgc-footer__responsible p:last-child {
    margin-bottom: 0;
}

/* Footer Legal */
.tgc-footer__legal {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.tgc-footer__legal-operator {
    margin-bottom: 1.5rem;
}

.tgc-footer__legal-operator p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.95rem;
}

.tgc-footer__legal-disclaimers p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tgc-footer__legal-badge {
    background: var(--tgc-warning);
    color: var(--tgc-white);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
}

.tgc-footer__bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* === FORMS === */
.tgc-form-group {
    margin-bottom: 1.5rem;
}

.tgc-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--tgc-primary);
    font-size: 0.95rem;
}

.tgc-form-input,
.tgc-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--tgc-border);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
    color: var(--tgc-dark);
}

.tgc-form-input:focus,
.tgc-form-textarea:focus {
    outline: none;
    border-color: var(--tgc-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.tgc-form-textarea {
    resize: vertical;
    min-height: 150px;
}

/* === SECTION TITLE LIGHT === */
.tgc-section-title--light h2 {
    color: var(--tgc-white);
}

.tgc-section-title--light p {
    color: rgba(255, 255, 255, 0.85);
}

/* === SUBTITLE TEXT === */
.tgc-subtitle {
    color: #4b5563;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* === BOX STYLES === */
/* How to Choose Section Boxes */
.tgc-box-accent {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--tgc-accent);
}

.tgc-box-accent h3,
.tgc-box-accent p {
    color: var(--tgc-white);
}

.tgc-box-accent h3 {
    margin-bottom: 1rem;
    color: var(--tgc-white);
}

.tgc-box-accent p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* Evaluation Criteria Boxes */
.tgc-box-white {
    background: var(--tgc-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tgc-box-white h3 {
    color: var(--tgc-primary);
    margin-bottom: 1rem;
}

.tgc-box-white p {
    margin: 0;
    color: #4b5563;
}

/* Category & Feature Boxes */
.tgc-box-gradient {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--tgc-primary);
}

.tgc-box-gradient h3 {
    color: var(--tgc-dark);
    margin-bottom: 1rem;
}

.tgc-box-gradient p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.tgc-box-gradient p:last-child {
    margin-bottom: 0;
}

.tgc-box-gradient--meta {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #4b5563;
}

/* === STEP/GETTING STARTED BOXES === */
.tgc-steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.tgc-step-box {
    text-align: center;
}

.tgc-step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--tgc-primary) 0%, var(--tgc-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--tgc-white);
    font-size: 2rem;
    font-weight: 900;
}

.tgc-step-box h3 {
    color: var(--tgc-dark);
    margin-bottom: 1rem;
}

.tgc-step-box p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.tgc-step-box .tgc-btn {
    margin-top: 1rem;
    display: inline-block;
}

/* === CTA FINAL SECTION === */
.tgc-section--cta-final {
    background: linear-gradient(0deg, var(--tgc-dark) 0%, var(--tgc-dark-secondary) 100%);
    color: var(--tgc-white);
    text-align: center;
}

.tgc-section--cta-final h2 {
    color: var(--tgc-white);
    margin-bottom: 1rem;
}

.tgc-section--cta-final p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.tgc-section--cta-final .tgc-btn {
    display: inline-block;
}

/* === OUTLINE BUTTON LIGHT VARIANT === */
.tgc-btn--outline-light {
    background: transparent;
    color: var(--tgc-white);
    border: 2px solid var(--tgc-white);
}

.tgc-btn--outline-light:hover {
    background: var(--tgc-white);
    color: var(--tgc-dark);
}

/* === HERO VARIANTS === */
.tgc-hero-primary {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--tgc-dark) 0%, var(--tgc-dark-secondary) 100%);
    border-bottom: 4px solid var(--tgc-primary);
}

/* === CALLOUT/INFO BOXES === */
.tgc-callout-primary {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid var(--tgc-primary);
}

.tgc-callout-info {
    margin-top: 3rem;
    padding: 2rem;
    background: #e6f4ff;
    border-radius: 8px;
    border-left: 4px solid var(--tgc-primary);
}

.tgc-info-box {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--tgc-light-secondary);
    border-radius: 8px;
    border-left: 4px solid var(--tgc-primary);
}

/* === GRADIENT SECTIONS === */
.tgc-section-gradient-primary {
    background: linear-gradient(135deg, var(--tgc-primary) 0%, var(--tgc-primary-dark) 100%);
    color: #ffffff;
}

.tgc-section-gradient-dark {
    background: linear-gradient(0deg, var(--tgc-dark) 0%, var(--tgc-dark-secondary) 100%);
    color: white;
    text-align: center;
}

/* === STAT/GRADIENT CARDS === */
.tgc-card-gradient {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    border-radius: 8px;
}

/* === TYPOGRAPHY UTILITIES === */
.tgc-heading-white {
    color: white;
    margin-bottom: 1rem;
}

.tgc-heading-white-center {
    color: #ffffff;
    margin-bottom: 1rem;
}

.tgc-subtitle-hero {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
}

.tgc-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.tgc-heading-primary {
    margin-top: 0;
    color: var(--tgc-primary);
}

.tgc-heading-accent-large {
    color: var(--tgc-accent);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.tgc-stat-value {
    color: var(--tgc-primary);
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 0.5rem 0;
}

.tgc-text-dark-center {
    color: var(--tgc-dark);
    text-align: center;
}

.tgc-text-muted-small {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 1rem;
}

.tgc-text-muted-center {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #6b7280;
    text-align: center;
}

/* === LINK STYLES === */
.tgc-link-primary {
    color: var(--tgc-primary);
}

.tgc-link-primary-bold {
    color: var(--tgc-primary);
    font-weight: 600;
}

.tgc-link-teal-bold {
    color: #0d9488;
    text-decoration: none;
    font-weight: 600;
}

/* === BUTTON VARIANTS === */
.tgc-btn-white {
    background: white;
    color: var(--tgc-dark);
}

.tgc-btn-white:hover {
    background: var(--tgc-light);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.tgc-btn-outline-white {
    border-color: white;
    color: white;
}

.tgc-btn-outline-white:hover {
    background: white;
    color: var(--tgc-dark);
}

/* === SPACING/DIVIDER STYLES === */
.tgc-divider-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--tgc-border);
}

.tgc-divider-top {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--tgc-border);
}

.tgc-list-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--tgc-border);
}

.tgc-list-item-last {
    padding: 0.75rem 0;
}

/* === HEADING SPACING === */
.tgc-heading-spaced {
    margin-top: 2rem;
}

.tgc-heading-spaced-both {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.tgc-margin-bottom {
    margin-bottom: 1rem;
}

/* === FORM STYLES === */
.tgc-form-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tgc-form-disclaimer {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #6b7280;
    text-align: center;
}

/* === SECTION BACKGROUND === */
.tgc-section-light-grey {
    background: #f3f4f6;
    text-align: center;
}

/* === ADDITIONAL UTILITY CLASSES === */

/* Display utilities */
.tgc-hidden {
    display: none;
}

/* Font sizes */
.tgc-text-lg {
    font-size: 1.5rem;
}

/* List utilities */
.tgc-list-clean {
    list-style: none;
    padding: 0;
}

.tgc-list-ordered {
    padding-left: 1.5rem;
}

.tgc-list-item-bordered {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--tgc-border);
}

/* Containers */
.tgc-container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

/* Card styling */
.tgc-card-info-primary {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid var(--tgc-primary);
}

.tgc-card-info-title {
    margin-top: 0;
    color: var(--tgc-primary);
}

.tgc-card-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--tgc-light-secondary);
    border-radius: 8px;
    border-left: 4px solid var(--tgc-primary);
}

.tgc-card-cta-title {
    margin-top: 0;
    color: var(--tgc-primary);
}

.tgc-contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.tgc-contact-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.tgc-contact-info-box {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f3f4f6;
    border-radius: 8px;
}

.tgc-contact-info-title {
    color: var(--tgc-primary);
    margin-top: 0;
}

/* Impact cards for stats */
.tgc-impact-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    border-radius: 8px;
}

.tgc-impact-number {
    color: var(--tgc-primary);
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 0.5rem 0;
}

/* Timeline styling */
.tgc-timeline-future-heading {
    color: var(--tgc-accent);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

/* Review/Platform styling */
.tgc-review-hero-gradient {
    background: linear-gradient(0deg, var(--tgc-dark) 0%, var(--tgc-dark-secondary) 100%);
    color: white;
    text-align: center;
}

.tgc-review-heading-margin {
    margin-bottom: 1rem;
}

.tgc-review-section-divider {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--tgc-border);
}

.tgc-review-section-heading {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* CTA box for reviews */
.tgc-cta-box {
    margin-top: 3rem;
    padding: 2rem;
    background: #f3f4f6;
    border-radius: 8px;
    border-left: 4px solid var(--tgc-primary);
}

/* Back link */
.tgc-back-link {
    color: var(--tgc-primary);
    font-weight: 600;
}

/* Form utilities */
.tgc-form-label {
    color: var(--tgc-primary);
    font-weight: 600;
}

/* FAQ box */
.tgc-faq-box {
    margin-top: 3rem;
    padding: 2rem;
    background: #e6f4ff;
    border-radius: 8px;
    border-left: 4px solid var(--tgc-primary);
}

/* FAQ title/section */
.tgc-faq-title {
    color: var(--tgc-primary);
    margin-top: 0;
}

/* === FAQ STYLES === */
.tgc-faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.tgc-faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--tgc-border);
    border-radius: 8px;
    padding: 1.5rem;
}

.tgc-faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--tgc-primary);
}

.tgc-faq-item p {
    margin-top: 1rem;
    color: #4b5563;
    margin-bottom: 0;
}

/* === ACTIONS WRAPPER === */
.tgc-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tgc-actions-wrapper {
    margin-top: 2rem;
    text-align: center;
}

/* === CONTAINER WRAPPER === */
.tgc-section-wrapper-centered {
    max-width: 900px;
    margin: 0 auto;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
    .tgc-footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }

    .tgc-container {
        padding: 0 16px;
    }

    /* === MOBILE HEADER & NAVIGATION === */
    .tgc-header__inner {
        min-height: 64px;
    }

    .tgc-header__logo-text {
        font-size: 1.1rem;
    }

    .tgc-header__menu-toggle {
        display: flex;
    }

    .tgc-header__nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--tgc-dark) 0%, var(--tgc-dark-secondary) 100%);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

        
    .tgc-header__menu-toggle.active {
        transform: rotate(45deg)!important;
    }

    .tgc-header__nav.mobile-open {
        max-height: 100vh;
        overflow-y: auto;
    }

    .tgc-header__nav-list {
        flex-direction: column;
        width: 100%;
    }

    .tgc-header__nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .tgc-header__nav-link {
        padding: 16px 20px;
        font-size: 1rem;
        border: none;
        display: block;
        width: 100%;
        text-align: left;
    }

    .tgc-header__nav-link:active {
        background-color: rgba(255, 255, 255, 0.15);
    }

    /* === HERO SECTION === */
    .tgc-hero {
        padding: 4rem 0;
    }

    .tgc-hero__inner {
        grid-template-columns: 1fr;
    }

    .tgc-hero__content h1 {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .tgc-hero__content > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .tgc-hero__actions {
        flex-direction: column;
        gap: 10px;
    }

    .tgc-hero__actions .tgc-btn {
        width: 100%;
        padding: 12px 20px;
    }

    /* === SECTIONS === */
    .tgc-section {
        padding: 3rem 0;
    }

    .tgc-section-title {
        margin-bottom: 2rem;
    }

    /* === CARDS === */
    .tgc-card__header {
        padding: 1.5rem;
        min-height: 140px;
    }

    .tgc-card__body {
        padding: 1.5rem;
    }

    .tgc-card__footer {
        padding: 1.25rem 1.5rem;
    }

    .tgc-card__title {
        font-size: 1.25rem;
    }

    /* === BUTTONS === */
    .tgc-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .tgc-btn--lg {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
    }

    /* === COOKIES MODAL === */
    .tgc-cookies-modal {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: 100%;
        width: auto;
    }

    .tgc-cookies-modal__content {
        padding: 1.25rem;
    }

    .tgc-cookies-modal__content h3 {
        font-size: 1.1rem;
    }

    .tgc-cookies-modal__actions {
        flex-direction: column;
    }

    .tgc-cookies-modal__actions .tgc-btn {
        width: 100%;
    }

    /* === FOOTER === */
    .tgc-footer {
        padding: 3rem 0 1.5rem;
    }

    .tgc-footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .tgc-footer__links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tgc-footer-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .tgc-footer-logos a {
        flex: 0 1 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
        padding: 1rem;
    }

    .tgc-footer-logos img {
        height: 50px;
        max-width: 45px;
    }

    .tgc-footer-logos a {
        min-width: 50px;
    }

    /* === GRIDS === */
    .tgc-grid--2,
    .tgc-grid--3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* === FEATURE BOXES === */
    .tgc-feature-box {
        padding: 1.5rem;
    }

    /* === STEPS GRID === */
    .tgc-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* === MODALS === */
    .tgc-age-verification {
        padding: 16px;
    }

    .tgc-age-verification__content {
        padding: 2rem;
        max-width: 100%;
    }

    .tgc-age-verification__icon {
        width: 70px;
        height: 70px;
        font-size: 3rem;
    }

    .tgc-age-verification__content h2 {
        font-size: 1.5rem;
    }

    .tgc-age-verification__actions {
        flex-direction: column;
        gap: 10px;
    }

    .tgc-age-verification__actions .tgc-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.375rem; }
    h3 { font-size: 1.125rem; }
    
    .tgc-container {
        padding: 0 12px;
    }

    .tgc-header {
        padding: 12px 0;
    }

    .tgc-header__inner {
        min-height: 56px;
    }

    .tgc-header__logo {
        gap: 8px;
    }

    .tgc-header__logo-mark {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .tgc-header__logo-text {
        font-size: 0.95rem;
        font-weight: 700;
    }

    .tgc-header__menu-toggle {
        padding: 6px;
    }

    .tgc-header__menu-toggle-icon span {
        width: 20px;
        height: 2px;
        gap: 4px;
    }

    .tgc-header__nav {
        top: 56px;
    }

    .tgc-section {
        padding: 2rem 0;
    }

    .tgc-section-title {
        margin-bottom: 1.5rem;
    }

    .tgc-section-title h2 {
        font-size: 1.375rem;
    }

    .tgc-hero {
        padding: 2.5rem 0;
    }

    .tgc-hero__content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .tgc-hero__content > p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .tgc-card {
        margin: 0;
    }

    .tgc-card__header {
        padding: 1rem;
        min-height: 120px;
    }

    .tgc-card__body {
        padding: 1rem;
    }

    .tgc-card__footer {
        padding: 1rem;
    }

    .tgc-card__title {
        font-size: 1.125rem;
    }

    .tgc-platform-card__rating-score {
        font-size: 1.75rem;
    }

    .tgc-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .tgc-btn--lg {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .tgc-btn--sm {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .tgc-footer {
        padding: 2rem 0 1rem;
        margin-top: 3rem;
    }

    .tgc-footer__responsible {
        padding: 1.5rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .tgc-footer__logo {
        font-size: 1.05rem;
    }

    .tgc-footer__logo-mark {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .tgc-footer__top {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        gap: 1.5rem;
    }

    .tgc-footer__links-column h2 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .tgc-footer-logos {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        gap: 1rem;
    }

    .tgc-footer-logos img {
        max-width: 90px;
    }

    .tgc-feature-box {
        padding: 1.25rem;
    }

    .tgc-age-verification__content {
        padding: 1.5rem;
    }

    .tgc-age-verification__icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }

    .tgc-age-verification__content h2 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .tgc-age-verification__content p {
        font-size: 0.9rem;
    }

    .tgc-age-verification__subtext {
        font-size: 0.85rem;
        margin-bottom: 1rem !important;
    }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
