@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    background-color: #000000;
    color: #E8E0D0;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #B8970C;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    color: #D4AF37;
    opacity: 0.9;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: #B8970C;
}

/* ===== CONTAINER ===== */
.gr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.gr-header {
    background: linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
    border-bottom: 1px solid rgba(184, 151, 12, 0.3);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.gr-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.gr-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.gr-logo-icon {
    color: #B8970C;
    font-size: 32px;
}

.gr-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #B8970C;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gr-logo-text span {
    color: #E8E0D0;
    font-weight: 300;
}

.gr-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.gr-nav-link {
    color: #E8E0D0;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 18px;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    transition: color 0.3s ease;
}

.gr-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #B8970C;
    transition: width 0.3s ease;
}

.gr-nav-link:hover {
    color: #B8970C;
}

.gr-nav-link:hover::after {
    width: 60%;
}

.gr-nav-link.active {
    color: #B8970C;
}

.gr-nav-link.active::after {
    width: 60%;
}

.gr-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.gr-burger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #B8970C;
    transition: all 0.3s ease;
}

.gr-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.gr-burger.active span:nth-child(2) {
    opacity: 0;
}

.gr-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== PREMIUM BANNER ===== */
.gr-banner {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at center, #1A1508 0%, #0A0800 40%, #000000 80%);
    overflow: hidden;
}

.gr-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(184, 151, 12, 0.05) 0%, transparent 50%),
        linear-gradient(225deg, rgba(184, 151, 12, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.gr-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, #000000, transparent);
    pointer-events: none;
}

.gr-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 20px;
}

.gr-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 151, 12, 0.1);
    border: 1px solid rgba(184, 151, 12, 0.3);
    padding: 8px 24px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B8970C;
    margin-bottom: 30px;
}

.gr-banner-title {
    font-size: 3.8rem;
    font-weight: 700;
    color: #E8E0D0;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: 1px;
}

.gr-banner-title em {
    font-style: italic;
    color: #B8970C;
}

.gr-banner-desc {
    font-size: 1.25rem;
    color: rgba(232, 224, 208, 0.7);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.gr-banner-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.gr-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.gr-btn-primary {
    background: linear-gradient(135deg, #B8970C 0%, #D4AF37 50%, #B8970C 100%);
    color: #000000;
    border: 1px solid #B8970C;
}

.gr-btn-primary:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #E8C547 50%, #D4AF37 100%);
    color: #000000;
    box-shadow: 0 8px 30px rgba(184, 151, 12, 0.3);
    transform: translateY(-2px);
}

.gr-btn-outline {
    background: transparent;
    color: #B8970C;
    border: 1px solid rgba(184, 151, 12, 0.5);
}

.gr-btn-outline:hover {
    background: rgba(184, 151, 12, 0.1);
    border-color: #B8970C;
    color: #D4AF37;
}

/* ===== SECTIONS ===== */
.gr-section {
    padding: 100px 0;
    position: relative;
}

.gr-section-dark {
    background: #000000;
}

.gr-section-alt {
    background: linear-gradient(180deg, #0A0805 0%, #000000 100%);
}

.gr-section-accent {
    background: linear-gradient(180deg, #0D0B04 0%, #060500 100%);
    border-top: 1px solid rgba(184, 151, 12, 0.1);
    border-bottom: 1px solid rgba(184, 151, 12, 0.1);
}

.gr-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.gr-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #B8970C;
    margin-bottom: 15px;
}

.gr-section-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #E8E0D0;
    margin-bottom: 15px;
}

.gr-section-title em {
    color: #B8970C;
    font-style: italic;
}

.gr-section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #B8970C, transparent);
    margin: 20px auto;
}

.gr-section-subtitle {
    font-size: 1.1rem;
    color: rgba(232, 224, 208, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===== FEATURES GRID ===== */
.gr-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gr-feature {
    background: linear-gradient(145deg, #0D0B06 0%, #050400 100%);
    border: 1px solid rgba(184, 151, 12, 0.15);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gr-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #B8970C, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gr-feature:hover {
    border-color: rgba(184, 151, 12, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(184, 151, 12, 0.08);
}

.gr-feature:hover::before {
    opacity: 1;
}

.gr-feature-icon {
    font-size: 42px;
    color: #B8970C;
    margin-bottom: 20px;
    display: block;
}

.gr-feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #E8E0D0;
    margin-bottom: 12px;
}

.gr-feature-text {
    font-size: 0.95rem;
    color: rgba(232, 224, 208, 0.6);
    line-height: 1.7;
}

/* ===== PRICING CARDS ===== */
.gr-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.gr-pricing-card {
    background: linear-gradient(145deg, #0D0B06 0%, #050400 100%);
    border: 1px solid rgba(184, 151, 12, 0.2);
    padding: 45px 35px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.gr-pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 151, 12, 0.5);
    box-shadow: 0 20px 50px rgba(184, 151, 12, 0.1);
}

.gr-pricing-card.gr-pricing-featured {
    border-color: #B8970C;
    background: linear-gradient(145deg, #151005 0%, #080600 100%);
}

.gr-pricing-card.gr-pricing-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #B8970C, #D4AF37, #B8970C);
}

.gr-pricing-badge {
    position: absolute;
    top: -1px;
    right: 30px;
    background: linear-gradient(135deg, #B8970C, #D4AF37);
    color: #000000;
    padding: 6px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gr-pricing-name {
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B8970C;
    margin-bottom: 20px;
}

.gr-pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: #E8E0D0;
    margin-bottom: 5px;
}

.gr-pricing-price span {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(232, 224, 208, 0.5);
}

.gr-pricing-period {
    font-size: 0.9rem;
    color: rgba(232, 224, 208, 0.4);
    margin-bottom: 30px;
}

.gr-pricing-features {
    text-align: left;
    margin-bottom: 35px;
    flex-grow: 1;
}

.gr-pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(184, 151, 12, 0.08);
    font-size: 0.95rem;
    color: rgba(232, 224, 208, 0.7);
}

.gr-pricing-features li iconify-icon {
    color: #B8970C;
    font-size: 18px;
    flex-shrink: 0;
}

.gr-pricing-btn {
    width: 100%;
    justify-content: center;
}

/* ===== TABLE (FINES) ===== */
.gr-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(184, 151, 12, 0.2);
    margin-top: 30px;
}

.gr-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.gr-table thead {
    background: linear-gradient(135deg, #1A1508, #0D0B04);
}

.gr-table th {
    padding: 16px 20px;
    text-align: left;
    color: #B8970C;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-bottom: 2px solid rgba(184, 151, 12, 0.3);
}

.gr-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(184, 151, 12, 0.08);
    color: rgba(232, 224, 208, 0.8);
}

.gr-table tbody tr {
    transition: background 0.3s ease;
}

.gr-table tbody tr:hover {
    background: rgba(184, 151, 12, 0.05);
}

/* ===== TEAM ===== */
.gr-team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gr-team-card {
    background: linear-gradient(145deg, #0D0B06 0%, #050400 100%);
    border: 1px solid rgba(184, 151, 12, 0.15);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.gr-team-card:hover {
    border-color: rgba(184, 151, 12, 0.4);
    transform: translateY(-3px);
}

.gr-team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(184, 151, 12, 0.2), rgba(184, 151, 12, 0.05));
    border: 2px solid rgba(184, 151, 12, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #B8970C;
}

.gr-team-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #E8E0D0;
    margin-bottom: 6px;
}

.gr-team-role {
    font-size: 0.9rem;
    color: #B8970C;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.gr-team-desc {
    font-size: 0.9rem;
    color: rgba(232, 224, 208, 0.6);
    line-height: 1.6;
}

/* ===== FAQ ===== */
.gr-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.gr-faq-item {
    border: 1px solid rgba(184, 151, 12, 0.15);
    margin-bottom: 12px;
    background: linear-gradient(145deg, #0D0B06 0%, #050400 100%);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.gr-faq-item:hover {
    border-color: rgba(184, 151, 12, 0.3);
}

.gr-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 500;
    color: #E8E0D0;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
    transition: color 0.3s ease;
}

.gr-faq-question:hover {
    color: #B8970C;
}

.gr-faq-question iconify-icon {
    color: #B8970C;
    font-size: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.gr-faq-item.active .gr-faq-question iconify-icon {
    transform: rotate(180deg);
}

.gr-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.gr-faq-item.active .gr-faq-answer {
    max-height: 500px;
}

.gr-faq-answer-inner {
    padding: 0 25px 20px;
    font-size: 0.95rem;
    color: rgba(232, 224, 208, 0.7);
    line-height: 1.7;
}

/* ===== REVIEWS ===== */
.gr-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gr-review {
    background: linear-gradient(145deg, #0D0B06 0%, #050400 100%);
    border: 1px solid rgba(184, 151, 12, 0.15);
    padding: 35px 30px;
    position: relative;
}

.gr-review::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    color: rgba(184, 151, 12, 0.15);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.gr-review-text {
    font-size: 1rem;
    color: rgba(232, 224, 208, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.gr-review-stars {
    color: #B8970C;
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    gap: 4px;
}

.gr-review-author {
    font-size: 1rem;
    font-weight: 600;
    color: #E8E0D0;
}

.gr-review-role {
    font-size: 0.85rem;
    color: rgba(232, 224, 208, 0.5);
}

/* ===== CONTACT FORM ===== */
.gr-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.gr-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gr-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gr-form-label {
    font-size: 0.9rem;
    color: #B8970C;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.gr-form-input,
.gr-form-textarea {
    background: #0A0805;
    border: 1px solid rgba(184, 151, 12, 0.2);
    padding: 14px 18px;
    color: #E8E0D0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.gr-form-input:focus,
.gr-form-textarea:focus {
    border-color: #B8970C;
    box-shadow: 0 0 15px rgba(184, 151, 12, 0.1);
}

.gr-form-textarea {
    min-height: 140px;
    resize: vertical;
}

.gr-form-input::placeholder,
.gr-form-textarea::placeholder {
    color: rgba(232, 224, 208, 0.3);
}

.gr-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.gr-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(232, 224, 208, 0.6);
}

.gr-consent input[type="checkbox"] {
    accent-color: #B8970C;
    margin-top: 4px;
    flex-shrink: 0;
}

.gr-consent a {
    color: #B8970C;
}

.gr-contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gr-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(145deg, #0D0B06 0%, #050400 100%);
    border: 1px solid rgba(184, 151, 12, 0.15);
}

.gr-contact-item iconify-icon {
    font-size: 24px;
    color: #B8970C;
    flex-shrink: 0;
    margin-top: 2px;
}

.gr-contact-item-label {
    font-size: 0.85rem;
    color: #B8970C;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.gr-contact-item-value {
    font-size: 1rem;
    color: rgba(232, 224, 208, 0.8);
}

/* ===== BREADCRUMBS ===== */
.gr-breadcrumbs {
    padding: 20px 0;
    border-bottom: 1px solid rgba(184, 151, 12, 0.1);
}

.gr-breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.gr-breadcrumbs-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gr-breadcrumbs-list a {
    color: rgba(232, 224, 208, 0.5);
    transition: color 0.3s ease;
}

.gr-breadcrumbs-list a:hover {
    color: #B8970C;
}

.gr-breadcrumbs-sep {
    color: rgba(184, 151, 12, 0.3);
    font-size: 12px;
}

.gr-breadcrumbs-current {
    color: #B8970C;
}

/* ===== PAGE HEADER ===== */
.gr-page-header {
    padding: 80px 0 60px;
    text-align: center;
    background: radial-gradient(ellipse at center, #0D0B04 0%, #000000 70%);
    border-bottom: 1px solid rgba(184, 151, 12, 0.1);
}

.gr-page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #E8E0D0;
    margin-bottom: 15px;
}

.gr-page-title em {
    color: #B8970C;
    font-style: italic;
}

.gr-page-desc {
    font-size: 1.15rem;
    color: rgba(232, 224, 208, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===== FOOTER ===== */
.gr-footer {
    background: linear-gradient(180deg, #050400 0%, #000000 100%);
    border-top: 1px solid rgba(184, 151, 12, 0.2);
    padding: 60px 0 0;
}

.gr-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(184, 151, 12, 0.1);
}

.gr-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gr-footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #B8970C;
    letter-spacing: 2px;
}

.gr-footer-brand-desc {
    font-size: 0.9rem;
    color: rgba(232, 224, 208, 0.5);
    line-height: 1.6;
}

.gr-footer-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #B8970C;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.gr-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gr-footer-link {
    color: rgba(232, 224, 208, 0.5);
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.gr-footer-link:hover {
    color: #B8970C;
    padding-left: 5px;
}

.gr-footer-bottom {
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(232, 224, 208, 0.4);
    flex-wrap: wrap;
    gap: 10px;
}

.gr-footer-bin {
    color: rgba(232, 224, 208, 0.3);
    font-size: 0.8rem;
}

/* ===== COOKIE BANNER ===== */
.gr-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #1A1508, #0A0800);
    border-top: 1px solid rgba(184, 151, 12, 0.3);
    padding: 20px;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(10px);
}

.gr-cookie.active {
    display: block;
}

.gr-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.gr-cookie-text {
    font-size: 0.9rem;
    color: rgba(232, 224, 208, 0.7);
    flex: 1;
}

.gr-cookie-text a {
    color: #B8970C;
}

.gr-cookie-btn {
    background: #B8970C;
    color: #000000;
    border: none;
    padding: 10px 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gr-cookie-btn:hover {
    background: #D4AF37;
}

/* ===== CONTENT ===== */
.gr-content {
    max-width: 800px;
    margin: 0 auto;
}

.gr-content h2 {
    font-size: 2rem;
    margin: 40px 0 15px;
    color: #E8E0D0;
}

.gr-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 12px;
    color: #B8970C;
}

.gr-content p {
    margin-bottom: 15px;
    color: rgba(232, 224, 208, 0.7);
    line-height: 1.8;
}

.gr-content ul,
.gr-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.gr-content ul {
    list-style: disc;
}

.gr-content ol {
    list-style: decimal;
}

.gr-content li {
    margin-bottom: 8px;
    color: rgba(232, 224, 208, 0.7);
    line-height: 1.7;
}

.gr-content a {
    color: #B8970C;
    border-bottom: 1px solid rgba(184, 151, 12, 0.3);
}

.gr-content a:hover {
    border-bottom-color: #B8970C;
}

/* ===== THANKYOU ===== */
.gr-thankyou {
    text-align: center;
    padding: 120px 20px;
}

.gr-thankyou-icon {
    font-size: 80px;
    color: #B8970C;
    margin-bottom: 30px;
}

.gr-thankyou-title {
    font-size: 2.8rem;
    color: #E8E0D0;
    margin-bottom: 15px;
}

.gr-thankyou-text {
    font-size: 1.15rem;
    color: rgba(232, 224, 208, 0.6);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== 404 ===== */
.gr-notfound {
    text-align: center;
    padding: 120px 20px;
}

.gr-notfound-code {
    font-size: 8rem;
    font-weight: 700;
    color: rgba(184, 151, 12, 0.2);
    line-height: 1;
    margin-bottom: 10px;
}

.gr-notfound-title {
    font-size: 2.5rem;
    color: #E8E0D0;
    margin-bottom: 15px;
}

.gr-notfound-text {
    font-size: 1.1rem;
    color: rgba(232, 224, 208, 0.6);
    margin-bottom: 40px;
}

/* ===== TIPS CARDS ===== */
.gr-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gr-tip-card {
    background: linear-gradient(145deg, #0D0B06 0%, #050400 100%);
    border: 1px solid rgba(184, 151, 12, 0.15);
    padding: 35px 30px;
    transition: all 0.4s ease;
}

.gr-tip-card:hover {
    border-color: rgba(184, 151, 12, 0.4);
    transform: translateY(-3px);
}

.gr-tip-card-icon {
    font-size: 36px;
    color: #B8970C;
    margin-bottom: 15px;
}

.gr-tip-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #E8E0D0;
    margin-bottom: 10px;
}

.gr-tip-card-text {
    font-size: 0.95rem;
    color: rgba(232, 224, 208, 0.6);
    line-height: 1.7;
}

/* ===== ABOUT STATS ===== */
.gr-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.gr-stat {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(145deg, #0D0B06 0%, #050400 100%);
    border: 1px solid rgba(184, 151, 12, 0.15);
}

.gr-stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #B8970C;
    margin-bottom: 5px;
}

.gr-stat-label {
    font-size: 0.9rem;
    color: rgba(232, 224, 208, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== FORM STATUS ===== */
.gr-form-status {
    padding: 15px 20px;
    font-size: 0.95rem;
    display: none;
}

.gr-form-status.success {
    display: block;
    background: rgba(184, 151, 12, 0.1);
    border: 1px solid rgba(184, 151, 12, 0.3);
    color: #B8970C;
}

.gr-form-status.error {
    display: block;
    background: rgba(200, 50, 50, 0.1);
    border: 1px solid rgba(200, 50, 50, 0.3);
    color: #C83232;
}

/* ===== CTA BLOCK ===== */
.gr-cta-block {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(145deg, #151005 0%, #080600 100%);
    border: 1px solid rgba(184, 151, 12, 0.2);
    margin-top: 60px;
}

.gr-cta-block-title {
    font-size: 2.2rem;
    color: #E8E0D0;
    margin-bottom: 15px;
}

.gr-cta-block-text {
    font-size: 1.1rem;
    color: rgba(232, 224, 208, 0.6);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== LOCK OVERLAY ===== */
.gr-lock-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.gr-lock-overlay.active {
    display: flex;
}

.gr-lock-box {
    background: linear-gradient(145deg, #0D0B06 0%, #050400 100%);
    border: 1px solid rgba(184, 151, 12, 0.3);
    padding: 50px 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.gr-lock-icon {
    font-size: 60px;
    color: #B8970C;
    margin-bottom: 20px;
}

.gr-lock-title {
    font-size: 1.8rem;
    color: #E8E0D0;
    margin-bottom: 10px;
}

.gr-lock-text {
    font-size: 1rem;
    color: rgba(232, 224, 208, 0.6);
    margin-bottom: 25px;
}

.gr-lock-btn {
    background: #B8970C;
    color: #000000;
    border: none;
    padding: 12px 35px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gr-lock-btn:hover {
    background: #D4AF37;
}

/* ===== GOLD LINE DECOR ===== */
.gr-gold-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 151, 12, 0.3), transparent);
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .gr-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .gr-pricing {
        grid-template-columns: repeat(2, 1fr);
    }

    .gr-team {
        grid-template-columns: repeat(2, 1fr);
    }

    .gr-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .gr-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gr-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: #0A0805;
        flex-direction: column;
        padding: 80px 30px 30px;
        border-left: 1px solid rgba(184, 151, 12, 0.2);
        transition: right 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .gr-nav.active {
        right: 0;
    }

    .gr-nav-link {
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(184, 151, 12, 0.08);
        width: 100%;
    }

    .gr-nav-link::after {
        display: none;
    }

    .gr-burger {
        display: flex;
    }

    .gr-banner {
        min-height: 70vh;
    }

    .gr-banner-title {
        font-size: 2.5rem;
    }

    .gr-banner-desc {
        font-size: 1.05rem;
    }

    .gr-section {
        padding: 60px 0;
    }

    .gr-section-title {
        font-size: 2rem;
    }

    .gr-features {
        grid-template-columns: 1fr;
    }

    .gr-pricing {
        grid-template-columns: 1fr;
    }

    .gr-team {
        grid-template-columns: 1fr;
    }

    .gr-reviews {
        grid-template-columns: 1fr;
    }

    .gr-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gr-footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gr-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .gr-page-title {
        font-size: 2.2rem;
    }

    .gr-tips-grid {
        grid-template-columns: 1fr;
    }

    .gr-stats {
        grid-template-columns: 1fr 1fr;
    }

    .gr-table {
        font-size: 0.85rem;
    }

    .gr-table th,
    .gr-table td {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .gr-banner-title {
        font-size: 2rem;
    }

    .gr-banner-actions {
        flex-direction: column;
        align-items: center;
    }

    .gr-btn {
        width: 100%;
        justify-content: center;
    }

    .gr-pricing-card {
        padding: 30px 20px;
    }

    .gr-stats {
        grid-template-columns: 1fr;
    }

    .gr-lock-box {
        padding: 35px 25px;
    }
}

/* ===== MOBILE OVERLAY ===== */
.gr-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.gr-nav-overlay.active {
    display: block;
}

/* ===== ABOUT MISSION ===== */
.gr-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.gr-about-text h3 {
    font-size: 1.5rem;
    color: #B8970C;
    margin-bottom: 15px;
}

.gr-about-text p {
    color: rgba(232, 224, 208, 0.7);
    line-height: 1.8;
    margin-bottom: 15px;
}

.gr-about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gr-about-value {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(145deg, #0D0B06 0%, #050400 100%);
    border: 1px solid rgba(184, 151, 12, 0.15);
}

.gr-about-value iconify-icon {
    font-size: 28px;
    color: #B8970C;
    flex-shrink: 0;
}

.gr-about-value-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #E8E0D0;
    margin-bottom: 5px;
}

.gr-about-value-text {
    font-size: 0.9rem;
    color: rgba(232, 224, 208, 0.6);
}

@media (max-width: 768px) {
    .gr-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: rgba(184, 151, 12, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(184, 151, 12, 0.5);
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(184, 151, 12, 0.3);
    color: #E8E0D0;
}

/* ===== ANIMATIONS ===== */
@keyframes grFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.gr-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gr-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

[class*="photo"] img,[class*="avatar"] img{width:100%;height:100%;object-fit:cover;border-radius:50%}
[class*="visual"] img{width:100%;height:100%;object-fit:cover;border-radius:12px}

/* === GaboRoad Process === */
.gr-process-section{background:#111}
.gr-process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-top:2rem}
.gr-process-step{padding:2rem;background:#1a1a1a;border-radius:12px;text-align:center;position:relative;border:1px solid #333}
.gr-process-num{position:absolute;top:.75rem;right:.75rem;font-size:1.5rem;font-weight:800;color:#F5A62333}
.gr-process-step iconify-icon{font-size:1.5rem;color:#F5A623;margin-bottom:.75rem}
.gr-process-step h3{color:#fff;margin-bottom:.5rem}
.gr-process-step p{color:#aaa;font-size:.9rem}
@media(max-width:768px){.gr-process-grid{grid-template-columns:repeat(2,1fr)}}
/* === GaboRoad Cases === */
.gr-cases-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:2rem}
.gr-case-card{background:#1a1a1a;border-radius:12px;padding:2rem;border:1px solid #333}
.gr-case-card iconify-icon{font-size:2rem;color:#F5A623;margin-bottom:1rem}
.gr-case-card h3{color:#fff;margin-bottom:.5rem}
.gr-case-card p{color:#aaa;font-size:.95rem}
@media(max-width:768px){.gr-cases-grid{grid-template-columns:1fr}}
