:root {
    --gt-green: #0d5c3d;
    --gt-green-dark: #084530;
    --gt-green-light: #1a7a52;
    --gt-gold: #c9a227;
    --gt-gold-light: #e4c04d;
    --gt-gold-dark: #a6851f;
    --gt-text: #1a2e28;
    --gt-muted: #5c6f68;
    --gt-bg: #f6faf8;
    --gt-white: #ffffff;
    --gt-shadow: 0 12px 40px rgba(13, 92, 61, 0.12);
}

* { box-sizing: border-box; }

body.gt-marketing {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--gt-text);
    background: var(--gt-bg);
    line-height: 1.6;
}

.gt-currency-select {
    min-width: 3.25rem;
    max-width: 4.5rem;
    width: auto;
    padding-left: 0.5rem;
    padding-right: 1.75rem;
    text-align: center;
    font-weight: 600;
    border-color: rgba(13, 92, 61, 0.25);
    font-size: 0.9rem;
}

.gt-navbar {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(13, 92, 61, 0.08);
    padding: 0.75rem 0;
}

.gt-navbar-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.gt-navbar-logo,
.gt-auth-card .gt-auth-logo img {
    display: block !important;
    max-height: 48px;
    min-height: 32px;
    width: auto;
    max-width: 220px;
    min-width: 100px;
    height: auto;
    object-fit: contain !important;
    object-position: left center;
    opacity: 1 !important;
    visibility: visible !important;
}

.gt-navbar-brand .gt-navbar-logo {
    flex-shrink: 0;
}

.gt-nav-link {
    color: var(--gt-text) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.gt-nav-link:hover,
.gt-nav-link.active {
    color: var(--gt-green) !important;
    background: rgba(13, 92, 61, 0.08);
}

.gt-btn-gold {
    background: linear-gradient(135deg, var(--gt-gold), var(--gt-gold-dark));
    color: #fff !important;
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gt-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.35);
    color: #fff;
}

.gt-btn-green {
    background: linear-gradient(135deg, var(--gt-green), var(--gt-green-dark));
    color: #fff !important;
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
}

.gt-btn-green:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--gt-green-light), var(--gt-green));
}

.gt-btn-outline-green {
    border: 2px solid var(--gt-green);
    color: var(--gt-green) !important;
    font-weight: 600;
    padding: 0.55rem 1.4rem;
    border-radius: 0.5rem;
    background: transparent;
}

.gt-btn-outline-green:hover {
    background: var(--gt-green);
    color: #fff !important;
}

.gt-hero {
    background: linear-gradient(135deg, var(--gt-green-dark) 0%, var(--gt-green) 50%, var(--gt-green-light) 100%);
    color: #fff;
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.gt-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.gt-hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
}

.gt-hero .lead {
    font-size: 1.15rem;
    opacity: 0.92;
}

.gt-hero-accent {
    color: var(--gt-gold-light);
}

.gt-section {
    padding: 4.5rem 0;
}

.gt-section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--gt-green-dark);
    margin-bottom: 1rem;
}

.gt-section-subtitle {
    color: var(--gt-muted);
    max-width: 640px;
    margin: 0 auto 3rem;
}

.gt-card {
    background: var(--gt-white);
    border: 1px solid rgba(13, 92, 61, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
}

.gt-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gt-shadow);
}

.gt-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(13, 92, 61, 0.1), rgba(201, 162, 39, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.gt-card-icon img {
    max-width: 36px;
    max-height: 36px;
    object-fit: contain;
}

.gt-pricing-card {
    border: 2px solid rgba(13, 92, 61, 0.1);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    background: #fff;
    height: 100%;
    position: relative;
    transition: all 0.3s;
}

.gt-pricing-section .container-xxl {
    max-width: 1320px;
}

.gt-pricing-row {
    align-items: stretch;
}

.gt-pricing-card.featured {
    border-color: var(--gt-gold);
    box-shadow: 0 16px 48px rgba(201, 162, 39, 0.2);
}

.gt-pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gt-gold);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gt-price {
    font-size: clamp(1.75rem, 2.2vw, 2.25rem);
    font-weight: 800;
    color: var(--gt-green);
    line-height: 1.2;
}

.gt-price small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gt-muted);
}

.gt-price-amount.gt-price-loading {
    opacity: 0.45;
}

.gt-testimonial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    border-left: 4px solid var(--gt-gold);
    box-shadow: var(--gt-shadow);
}

.gt-testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gt-gold);
}

.gt-footer {
    background: linear-gradient(180deg, var(--gt-green-dark), #062a1f);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 1.5rem;
}

.gt-footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.gt-footer a:hover {
    color: var(--gt-gold-light);
}

.gt-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.gt-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.gt-social-link:hover {
    background: var(--gt-gold);
    color: var(--gt-green-dark) !important;
    transform: translateY(-2px);
}

.gt-social-links--contact .gt-social-link {
    background: rgba(13, 92, 61, 0.08);
    color: var(--gt-green) !important;
}

.gt-social-links--contact .gt-social-link:hover {
    background: var(--gt-green);
    color: #fff !important;
}

.gt-page-hero {
    background: linear-gradient(135deg, var(--gt-green-dark), var(--gt-green));
    color: #fff;
    padding: 3.5rem 0;
    text-align: center;
}

.gt-contact-form .form-control,
.gt-contact-form .form-select {
    border-radius: 0.5rem;
    border: 1px solid rgba(13, 92, 61, 0.2);
    padding: 0.75rem 1rem;
}

.gt-contact-form .form-control:focus {
    border-color: var(--gt-green);
    box-shadow: 0 0 0 0.2rem rgba(13, 92, 61, 0.15);
}

.gt-faq-item {
    border: 1px solid rgba(13, 92, 61, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.gt-faq-item .accordion-button {
    font-weight: 600;
    color: var(--gt-green-dark);
}

.gt-faq-item .accordion-button:not(.collapsed) {
    background: rgba(13, 92, 61, 0.06);
    color: var(--gt-green);
}

.gt-brand-logo {
    max-height: 48px;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: all 0.2s;
}

.gt-brand-logo:hover {
    filter: none;
    opacity: 1;
}

/* Auth pages */
.gt-auth-page {
    background: var(--gt-bg);
}

.gt-auth-section {
    padding: 3rem 0 4rem;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
}

.gt-auth-card {
    background: var(--gt-white);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--gt-shadow);
    border: 1px solid rgba(13, 92, 61, 0.08);
}

.gt-auth-side {
    background-size: cover;
    background-position: center;
    min-height: 520px;
    position: relative;
}

.gt-auth-side-overlay {
    background: linear-gradient(180deg, rgba(8, 69, 48, 0.85), rgba(13, 92, 61, 0.75));
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
}

.gt-auth-form-wrap {
    padding: 2.5rem 2.5rem 2.75rem;
}

.gt-auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gt-green-dark);
    margin-bottom: 0.5rem;
}

.gt-auth-subtitle {
    color: var(--gt-muted);
    margin-bottom: 1.75rem;
}

.gt-auth-form .form-label {
    font-weight: 600;
    color: var(--gt-text);
    font-size: 0.9rem;
}

.gt-auth-form .form-control {
    border-radius: 0.5rem;
    border: 1px solid rgba(13, 92, 61, 0.2);
    padding: 0.7rem 1rem;
}

.gt-auth-form .form-control:focus {
    border-color: var(--gt-green);
    box-shadow: 0 0 0 0.2rem rgba(13, 92, 61, 0.12);
}

.gt-auth-form .form-control.is-invalid,
.gt-auth-form .form-check-input.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.gt-auth-form .gt-password-toggle .form-control.is-invalid {
    padding-right: 2.75rem;
}

.gt-auth-form .dm-field-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.35rem;
}

.gt-auth-form .dm-auth-alert ul {
    margin-bottom: 0;
}

.gt-auth-form .form-check-input.is-invalid {
    border-color: #dc3545;
}

.gt-auth-form .form-check-input.is-invalid ~ .form-check-label {
    color: #dc3545;
}

.gt-auth-form .form-check-input:checked {
    background-color: var(--gt-green);
    border-color: var(--gt-green);
}

.gt-auth-link {
    color: var(--gt-green);
    font-weight: 600;
    text-decoration: none;
}

.gt-auth-link:hover {
    color: var(--gt-gold-dark);
}

.gt-password-toggle {
    position: relative;
}

.gt-password-toggle .gt-password-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: var(--gt-muted);
    padding: 0;
    line-height: 1;
    z-index: 5;
}

.gt-password-toggle .form-control {
    padding-right: 2.75rem;
}

.gt-auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gt-muted);
    font-size: 0.875rem;
    margin: 1.5rem 0;
}

.gt-auth-divider::before,
.gt-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(13, 92, 61, 0.15);
}

.gt-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(13, 92, 61, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all 0.2s;
}

.gt-social-btn:hover {
    border-color: var(--gt-green);
    box-shadow: 0 4px 12px rgba(13, 92, 61, 0.12);
}

@media (max-width: 991px) {
    .gt-pricing-card.featured {
        transform: none;
    }

    .gt-pricing-card {
        padding: 2rem 1.25rem;
    }

    .gt-auth-form-wrap {
        padding: 2rem 1.5rem;
    }
}
