/* GTMReview Prototype Styles */

/* Reset common WP theme spacing and hide headers/titles */
.page .entry-content,
.page .post-inner,
.page .entry-header,
.page .site-content,
.page .wp-block-post-content,
.page .entry-content > *:not(.gtmr-wrapper) {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Hide theme header, footer, and page title */
.page header:not(.gtmr-nav),
.page footer:not(.gtmr-footer),
.page .site-header,
.page .site-footer,
.page .entry-title,
.page h1.wp-block-post-title {
    display: none !important;
}

body.home {
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
}

:root {
    --gtmr-dark-bg: #08111f;
    --gtmr-dark-card: #101a2e;
    --gtmr-light-bg: #f7f9fc;
    --gtmr-white: #ffffff;
    --gtmr-primary: #2563eb;
    --gtmr-accent: #06b6d4;
    --gtmr-text-dark: #0f172a;
    --gtmr-text-muted: #64748b;
    --gtmr-border: #dce3ef;
    --gtmr-success: #16a34a;
    --gtmr-amber: #f59e0b;
    --gtmr-font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.gtmr-wrapper {
    font-family: var(--gtmr-font-family);
    color: var(--gtmr-text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    background: #ffffff;
    box-sizing: border-box;
}

.gtmr-wrapper *, .gtmr-wrapper *::before, .gtmr-wrapper *::after {
    box-sizing: border-box !important;
}

.gtmr-container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    box-sizing: border-box !important;
}

/* For homepage specifically, keep it slightly wider but not too much */
.home .gtmr-container {
    max-width: 1400px !important;
    padding: 0 60px !important;
}

/* Navigation */
.gtmr-nav {
    background: #ffffff;
    padding: 24px 0;
    border-bottom: 1px solid var(--gtmr-border);
}

.gtmr-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gtmr-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--gtmr-text-dark);
    letter-spacing: -0.02em;
    text-decoration: none;
}

.gtmr-nav-links {
    display: flex;
    gap: 32px;
}

.gtmr-nav-links a {
    color: var(--gtmr-text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.gtmr-nav-links a:hover {
    color: var(--gtmr-primary);
}

/* Buttons */
.gtmr-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.gtmr-btn-primary {
    background: var(--gtmr-primary);
    color: var(--gtmr-white);
}

.gtmr-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.gtmr-btn-outline {
    background: transparent;
    border: 1px solid var(--gtmr-border);
    color: var(--gtmr-text-dark);
}

.gtmr-btn-outline:hover {
    border-color: var(--gtmr-primary);
    color: var(--gtmr-primary);
}

.gtmr-btn-full {
    display: block;
    text-align: center;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Hero Section */
.gtmr-hero {
    background: #ffffff;
    padding: 120px 0;
    color: var(--gtmr-text-dark);
    position: relative;
    overflow: hidden;
}

.gtmr-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.gtmr-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.gtmr-hero-content h1 {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    color: var(--gtmr-text-dark);
}

.gtmr-hero-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.gtmr-hero-content-centered h1 {
    font-size: 56px;
    margin-bottom: 24px;
}

.gtmr-hero-sub {
    font-size: 22px;
    color: var(--gtmr-text-muted);
    margin-bottom: 48px;
    max-width: 640px;
    line-height: 1.4;
}

.gtmr-hero-content-centered .gtmr-hero-sub {
    margin-left: auto;
    margin-right: auto;
}

.gtmr-input-block {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--gtmr-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.gtmr-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gtmr-text-dark);
    margin-bottom: 12px;
}

.gtmr-input-group {
    display: flex;
    gap: 12px;
}

.gtmr-input-group input {
    flex: 1;
    background: var(--gtmr-light-bg);
    border: 1px solid var(--gtmr-border);
    border-radius: 10px;
    padding: 16px 20px;
    color: var(--gtmr-text-dark);
    font-size: 16px;
}

.gtmr-input-group input:focus {
    outline: none;
    border-color: var(--gtmr-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.gtmr-helper-text {
    font-size: 13px;
    color: var(--gtmr-text-muted);
    margin-top: 16px;
}

.gtmr-hero-secondary {
    font-size: 14px;
    color: var(--gtmr-text-muted);
}

/* Dashboard Card */
.gtmr-dashboard-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--gtmr-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.gtmr-card-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--gtmr-border);
    background: var(--gtmr-light-bg);
}

.gtmr-card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--gtmr-text-dark);
}

.gtmr-card-body {
    padding: 32px;
}

.gtmr-stat-item {
    margin-bottom: 20px;
}

.gtmr-stat-item:last-child {
    margin-bottom: 0;
}

.gtmr-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gtmr-text-muted);
    margin-bottom: 6px;
    font-weight: 700;
}

.gtmr-label-caps {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gtmr-primary);
    font-weight: 800;
    margin-bottom: 16px;
}

.gtmr-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--gtmr-text-dark);
}

.gtmr-score-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gtmr-score-bar {
    flex: 1;
    height: 8px;
    background: var(--gtmr-light-bg);
    border-radius: 4px;
    overflow: hidden;
}

.gtmr-score-fill {
    height: 100%;
    background: var(--gtmr-primary);
}

.gtmr-badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--gtmr-primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.gtmr-badge-coming {
    display: inline-block;
    background: var(--gtmr-light-bg);
    color: var(--gtmr-text-muted);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 16px;
}

/* Trust Strip */
.gtmr-trust-strip {
    background: var(--gtmr-light-bg);
    border-top: 1px solid var(--gtmr-border);
    border-bottom: 1px solid var(--gtmr-border);
    padding: 32px 0;
}

.gtmr-trust-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gtmr-trust-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--gtmr-text-muted);
}

.gtmr-trust-items {
    display: flex;
    gap: 32px;
}

.gtmr-trust-items span {
    font-size: 15px;
    font-weight: 700;
    color: var(--gtmr-text-dark);
    opacity: 0.6;
}

/* Sections */
.gtmr-section {
    padding: 120px 0;
}

.gtmr-bg-light {
    background: var(--gtmr-light-bg);
}

.gtmr-section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gtmr-section-header h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--gtmr-text-dark);
}

.gtmr-section-header p {
    color: #475569;
    font-size: 20px;
    line-height: 1.5;
}

/* Grids */
.gtmr-grid-3 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
}

.gtmr-grid-4 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
}

.gtmr-grid-5 {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 16px !important;
}

.gtmr-grid-2 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
}

.gtmr-features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
}

.gtmr-feature-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--gtmr-border);
    transition: all 0.3s;
}

.gtmr-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--gtmr-primary);
}

.gtmr-feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gtmr-text-dark);
}

.gtmr-feature-card p {
    color: var(--gtmr-text-muted);
    font-size: 16px;
    line-height: 1.6;
}

.gtmr-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.gtmr-step {
    text-align: center;
}

.gtmr-step-number {
    width: 48px;
    height: 48px;
    background: var(--gtmr-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 24px;
}

.gtmr-step h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.gtmr-step p {
    color: var(--gtmr-text-muted);
    font-size: 16px;
}

/* Labels */
.gtmr-label-caps {
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--gtmr-primary);
    margin-bottom: 16px;
}

/* Pricing Cards */
.gtmr-pricing-card {
    background: #fff;
    border: 1px solid var(--gtmr-border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gtmr-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.05);
}

.gtmr-pricing-featured {
    border: 2px solid var(--gtmr-primary);
    position: relative;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.1);
}

.gtmr-featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gtmr-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.gtmr-pricing-header {
    margin-bottom: 24px;
    text-align: center;
}

.gtmr-plan-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--gtmr-text-muted);
    margin-bottom: 8px;
}

.gtmr-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--gtmr-text);
}

.gtmr-billing {
    font-size: 14px;
    color: var(--gtmr-text-muted);
}

.gtmr-pricing-body {
    flex-grow: 1;
}

.gtmr-pricing-body p {
    font-size: 15px;
    color: var(--gtmr-text-muted);
    margin-bottom: 24px;
    min-height: 44px;
}

.gtmr-pricing-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.gtmr-pricing-body li {
    font-size: 14px;
    color: var(--gtmr-text);
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.gtmr-pricing-body li:last-child {
    border-bottom: none;
}

/* Code Block & Copy Button */
.gtmr-code-wrapper {
    position: relative;
    background: #1e293b;
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
}

.gtmr-code-block {
    margin: 0;
    color: #e2e8f0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.6;
    overflow-x: auto;
}

.gtmr-copy-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 12px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}

.gtmr-copy-btn:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* Accordion FAQ */
.gtmr-accordion-header {
    cursor: pointer;
    position: relative;
    padding-right: 40px;
}

.gtmr-accordion-header::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--gtmr-primary);
    transition: transform 0.2s ease;
}

.gtmr-faq-item.active .gtmr-accordion-header::after {
    transform: translateY(-50%) rotate(45deg);
}

.gtmr-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.gtmr-faq-item.active .gtmr-accordion-content {
    max-height: 500px;
    padding-top: 16px;
}

/* Hero CTAs */
.gtmr-hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

/* Index Cards */
.gtmr-index-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--gtmr-border);
    transition: all 0.3s;
    height: 100%;
}

.gtmr-index-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--gtmr-primary);
}

.gtmr-index-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gtmr-text-dark);
}

.gtmr-index-card p {
    color: var(--gtmr-text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gtmr-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.gtmr-pill {
    background: var(--gtmr-light-bg);
    color: var(--gtmr-text-muted);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.gtmr-pills-large .gtmr-pill {
    padding: 8px 16px;
    font-size: 14px;
}

.gtmr-score-rows {
    border-top: 1px solid var(--gtmr-border);
    padding-top: 20px;
    margin-bottom: 24px;
}

.gtmr-score-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}

.gtmr-score-row span {
    color: var(--gtmr-text-muted);
}

/* Page Header */
.gtmr-page-header {
    background: #ffffff;
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--gtmr-border);
}

.gtmr-breadcrumbs {
    font-size: 14px;
    color: var(--gtmr-text-muted);
    margin-bottom: 32px;
}

.gtmr-breadcrumbs a {
    color: var(--gtmr-primary);
    text-decoration: none;
}

.gtmr-disclaimer-card {
    background: #fffbeb;
    border: 1px solid #fef3c7;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 40px 0;
    font-size: 14px;
    color: #92400e;
}

.gtmr-summary-cards {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.gtmr-summary-card {
    background: #ffffff;
    border: 1px solid var(--gtmr-border);
    border-radius: 12px;
    padding: 16px 24px;
    flex: 1;
    min-width: 180px;
}

.gtmr-summary-cards-4 .gtmr-summary-card {
    min-width: 250px;
}

/* Two Column Layout */
.gtmr-two-column {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 340px !important;
    gap: 60px !important;
    padding: 80px 0 !important;
}

.gtmr-content-section {
    margin-bottom: 80px;
}

.gtmr-content-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.gtmr-content-section p {
    font-size: 18px;
    color: #334155;
    margin-bottom: 24px;
    line-height: 1.6;
}

.gtmr-positioning-card {
    background: var(--gtmr-light-bg);
    border-left: 4px solid var(--gtmr-primary);
    padding: 32px;
    border-radius: 0 16px 16px 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin: 40px 0;
}

.gtmr-list-card {
    background: #ffffff;
    border: 1px solid var(--gtmr-border);
    border-radius: 20px;
    padding: 32px;
}

.gtmr-list-card h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--gtmr-success);
}

.gtmr-not-fit h4 {
    color: #ef4444;
}

.gtmr-list-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gtmr-list-card li {
    font-size: 15px;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: #475569;
}

.gtmr-list-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gtmr-text-muted);
}

/* Persona Grid */
.gtmr-persona-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gtmr-persona-card {
    background: #ffffff;
    border: 1px solid var(--gtmr-border);
    border-radius: 16px;
    padding: 24px;
}

.gtmr-persona-card h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.gtmr-persona-card p {
    font-size: 14px !important;
    margin-bottom: 8px !important;
}

.gtmr-persona-msg {
    background: var(--gtmr-light-bg);
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px !important;
}

.gtmr-pains-msg {
    margin-bottom: 20px;
}

.gtmr-pains-msg p {
    font-size: 14px !important;
    margin-bottom: 8px !important;
}

/* Sidebar Sticky Card */
.gtmr-sticky-card {
    position: sticky;
    top: 40px;
    background: #ffffff;
    border: 1px solid var(--gtmr-border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.gtmr-sticky-card h4 {
    font-size: 18px;
    margin-bottom: 24px;
}

.gtmr-snap-rows {
    margin-bottom: 32px;
}

.gtmr-snap-row {
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gtmr-border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gtmr-snap-row span {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gtmr-text-muted);
}

/* Lists */
.gtmr-check-list, .gtmr-warning-list {
    list-style: none;
    padding: 0;
}

.gtmr-check-list li, .gtmr-warning-list li {
    font-size: 17px;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.gtmr-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gtmr-success);
    font-weight: 800;
}

.gtmr-warning-list li::before {
    content: '!';
    position: absolute;
    left: 0;
    color: var(--gtmr-amber);
    font-weight: 800;
}

/* FAQ Section */
.gtmr-faq-section {
    margin-top: 80px;
}

.gtmr-faq-section h2 {
    margin-bottom: 16px;
}

.gtmr-section-intro {
    font-size: 18px;
    color: var(--gtmr-text-muted);
    margin-bottom: 48px;
}

.gtmr-faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gtmr-faq-item {
    background: #ffffff;
    border: 1px solid var(--gtmr-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.2s;
}

.gtmr-faq-item:hover {
    border-color: var(--gtmr-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.gtmr-faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gtmr-text-dark);
}

.gtmr-faq-answer p {
    font-size: 15px !important;
    color: #475569 !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

/* Code Block */
.gtmr-code-block {
    background: #1e293b;
    color: #e2e8f0;
    padding: 32px;
    border-radius: 16px;
    font-family: monospace;
    font-size: 14px;
    overflow-x: auto;
    line-height: 1.6;
}

/* Mini Grid */
.gtmr-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.gtmr-mini-card {
    background: var(--gtmr-light-bg);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gtmr-border);
}

.gtmr-mini-card h4 {
    font-size: 15px;
    margin: 0;
}

/* Search Mock */
.gtmr-search-mock {
    max-width: 500px;
    margin: 0 auto;
}

.gtmr-search-mock input {
    width: 100%;
    padding: 16px 24px;
    border-radius: 30px;
    border: 1px solid var(--gtmr-border);
    background: var(--gtmr-light-bg);
    font-size: 16px;
}

/* Workflow Cards */
.gtmr-workflows-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.gtmr-workflow-card {
    background: #ffffff;
    padding: 48px;
    border-radius: 24px;
    border: 1px solid var(--gtmr-border);
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: center;
}

.gtmr-workflow-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--gtmr-text-dark);
}

.gtmr-workflow-card p {
    color: var(--gtmr-text-muted);
    font-size: 18px;
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.gtmr-cta-section {
    background: var(--gtmr-light-bg);
    color: var(--gtmr-text-dark);
    text-align: center;
    border-top: 1px solid var(--gtmr-border);
}

.gtmr-cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.gtmr-cta-content p {
    color: var(--gtmr-text-muted);
    font-size: 20px;
    margin-bottom: 48px;
}

.gtmr-form-inline {
    max-width: 640px;
    margin: 0 auto;
}

/* Message states */
.gtmr-message {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 600;
    display: none;
}

.gtmr-message.success {
    color: var(--gtmr-success);
    display: block;
}

.gtmr-message.error {
    color: #ef4444;
    display: block;
}

/* Footer */
.gtmr-footer {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid var(--gtmr-border);
}

.gtmr-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.gtmr-footer-info .gtmr-logo {
    color: var(--gtmr-text-dark);
    margin-bottom: 24px;
}

.gtmr-footer-info p {
    color: var(--gtmr-text-muted);
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 400px;
}

.gtmr-disclaimer {
    font-size: 13px !important;
    opacity: 0.6;
    line-height: 1.5;
}

.gtmr-footer-links {
    display: flex;
    gap: 40px;
    justify-content: flex-end;
}

.gtmr-footer-links a {
    color: var(--gtmr-text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
}

.gtmr-footer-links a:hover {
    color: var(--gtmr-primary);
}

/* Responsive */
@media (max-width: 1200px) {
    .gtmr-hero-content h1 {
        font-size: 56px;
    }
    .gtmr-container {
        padding: 0 32px !important;
    }
    .gtmr-two-column {
        gap: 32px !important;
    }
}

@media (max-width: 992px) {
    .gtmr-hero-grid, .gtmr-two-column {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .gtmr-hero-content h1 {
        font-size: 48px;
    }
    
    .gtmr-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    
    .gtmr-nav-links {
        display: none;
    }
    
    .gtmr-grid-3, .gtmr-grid-2, .gtmr-grid-4, .gtmr-grid-5, .gtmr-persona-grid {
        grid-template-columns: 1fr;
    }
    
    .gtmr-hero-ctas {
        flex-direction: column;
    }
    
    .gtmr-workflow-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        padding: 40px;
    }
    
    .gtmr-trust-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .gtmr-trust-items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .gtmr-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .gtmr-footer-info p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .gtmr-footer-links {
        justify-content: center;
    }

    .gtmr-sidebar {
        order: -1;
    }

    .gtmr-sticky-card {
        position: static;
    }

    .gtmr-summary-cards {
        justify-content: center;
    }
}

/* Persona Detail Styles */
.gtmr-content-block {
    margin-bottom: 48px;
}

.gtmr-content-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--gtmr-text);
}

.gtmr-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gtmr-bullet-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--gtmr-text-muted);
}

.gtmr-bullet-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gtmr-primary);
    font-weight: 700;
}

.gtmr-msg-example {
    font-size: 14px;
    background: #f1f5f9;
    padding: 12px;
    border-radius: 8px;
    margin-top: 12px;
    border-left: 3px solid var(--gtmr-primary);
}

.gtmr-sidebar-text {
    font-size: 14px;
    color: var(--gtmr-text-muted);
    line-height: 1.5;
    margin-top: 4px;
}

/* Article Design */
.gtmr-article {
    background: #ffffff;
    padding-bottom: 100px;
}

.gtmr-article-header {
    padding: 80px 0 60px;
    background: #f8fafc;
    border-bottom: 1px solid var(--gtmr-border);
    margin-bottom: 80px;
}

.gtmr-article-header h1 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin: 24px 0;
    line-height: 1.1;
    max-width: 900px;
}

.gtmr-article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gtmr-text-muted);
}

.gtmr-meta-sep {
    opacity: 0.3;
}

.gtmr-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px) 300px;
    gap: 80px;
    justify-content: center;
    align-items: start;
}

.gtmr-article-body {
    font-size: 19px;
    line-height: 1.7;
    color: #334155;
}

.gtmr-article-body h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 60px 0 24px;
    color: var(--gtmr-text-dark);
    letter-spacing: -0.02em;
}

.gtmr-article-body h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--gtmr-text-dark);
}

.gtmr-article-body p {
    margin-bottom: 28px;
}

.gtmr-article-body ul, .gtmr-article-body ol {
    margin-bottom: 32px;
    padding-left: 24px;
}

.gtmr-article-body li {
    margin-bottom: 12px;
}

.gtmr-article-sidebar {
    position: relative;
}

.gtmr-sticky-toc {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    background: #ffffff;
    border: 1px solid var(--gtmr-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.gtmr-sticky-toc h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gtmr-text-muted);
    margin-bottom: 20px;
    font-weight: 700;
}

.gtmr-sticky-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gtmr-sticky-toc li {
    margin-bottom: 14px;
}

.gtmr-sticky-toc a {
    text-decoration: none;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.2s;
    display: block;
}

.gtmr-sticky-toc a:hover {
    color: var(--gtmr-primary);
    transform: translateX(4px);
}

.gtmr-sticky-toc a.active {
    color: var(--gtmr-primary);
    font-weight: 700;
}

@media (max-width: 1100px) {
    .gtmr-article-layout {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .gtmr-article-sidebar {
        display: none;
    }
    .gtmr-article-header h1 {
        font-size: 40px;
    }
}
