/* Base Styles */
:root {
    --primary: #FFAA17FF;
    --primary-foreground: #FFFFFF;
    --secondary: #1E293B;
    --secondary-foreground: #FFFFFF;
    --background: #FFFFFF;
    --muted: #F1F5F9;
    --muted-foreground: #64748B;
    --border: #E2E8F0;
    --gray-200: #e5e7eb;
}

body {
    background-color: var(--background);
    color: var(--secondary);
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

/* Utility Classes */
.r-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.r-hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), #FFAA17FF, #FFAA17FF);
    padding: 80px 0;
}

.r-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.r-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.r-hero-content {
    color: var(--primary-foreground);
}

.r-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 32px;
}

.r-hero-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-foreground);
}

.r-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.r-hero-title-highlight {
    display: block;
    color: var(--background);
    margin-top: 8px;
}

.r-hero-description {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
}

.r-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.r-hero-primary-btn {
    padding: 12px 32px;
    background-color: var(--background);
    color: var(--primary);
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.r-hero-primary-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    color: var(--primary);
}

.r-hero-secondary-btn {
    padding: 12px 32px;
    border: 2px solid var(--background);
    color: var(--primary-foreground);
    font-weight: 700;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.r-hero-secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-foreground);
}

.r-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.r-stat-card {
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #fff;
    position: relative;
}

.r-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--background);
    margin-bottom: 8px;
}

.r-stat-label {
    font-size: 14px;
    opacity: 0.8;
    color: #fff;
}

.r-stat-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--background);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 9999px;
}

/* Calculator Section */
.r-calculator-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--background), rgba(241, 245, 249, 0.3));
}

.r-calculator-header {
    text-align: center;
    margin-bottom: 64px;
}

.r-calculator-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
}

.r-calculator-subtitle {
    font-size: 20px;
    color: var(--muted-foreground);
    max-width: 800px;
    margin: 0 auto;
}

.r-calculator-card {
    background-color: var(--background);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
}

.r-calculator-card-header {
    background: linear-gradient(to right, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
    border-bottom: 1px solid var(--border);
    padding: 24px;
}

.r-calculator-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.r-calculator-icon {
    font-size: 24px;
    color: var(--primary);
}

.r-calculator-card-body {
    padding: 32px;
}

.r-input-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.r-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.r-input-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.r-input-label-icon {
    color: var(--primary);
}

.r-input-field {
    position: relative;
}

.r-input {
    width: 100%;
    height: 56px;
    font-size: 18px;
    border: 2px solid var(--muted);
    border-radius: 12px;
    padding-left: 48px;
    transition: all 0.3s ease;
}

.r-input:focus {
    border-color: var(--primary);
    outline: none;
}

.r-input-prefix {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-foreground);
}

.r-calculate-btn-container {
    text-align: center;
    margin-bottom: 32px;
}

.r-calculate-btn {
    padding: 16px 48px;
    background: linear-gradient(to right, var(--primary), rgba(249, 115, 22, 0.8));
    color: white;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.r-calculate-btn:hover {
    background: linear-gradient(to right, rgba(249, 115, 22, 0.9), rgba(249, 115, 22, 0.7));
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.r-results-container {
    background: linear-gradient(to bottom right, rgba(249, 115, 22, 0.05), rgba(249, 115, 22, 0.1));
    border-radius: 16px;
    padding: 32px;
    border: 2px solid rgba(249, 115, 22, 0.2);
}

.r-results-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 32px;
    text-align: center;
}

.r-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.r-result-card {
    background-color: var(--background);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.r-result-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.r-result-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
}

.r-results-summary {
    text-align: center;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
}

.r-summary-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
}

.r-summary-highlight {
    color: var(--primary);
    font-weight: 800;
}

/* Services Section */
.r-services-section {
    padding: 96px 0;
    background: linear-gradient(to bottom, rgba(241, 245, 249, 0.3), var(--background));
}

.r-services-header {
    text-align: center;
    margin-bottom: 64px;
}

.r-services-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: rgba(249, 115, 22, 0.1);
    border-radius: 9999px;
    margin-bottom: 16px;
}

.r-services-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.r-services-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
}

.r-services-subtitle {
    font-size: 20px;
    color: var(--muted-foreground);
    max-width: 800px;
    margin: 0 auto;
}

.r-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.r-service-card {
    background-color: var(--background);
    border: 1px solid var(--muted);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.r-service-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.r-service-icon-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.r-service-icon {
    padding: 8px;
    background-color: rgba(249, 115, 22, 0.1);
    border-radius: 8px;
    color: var(--primary);
    font-size: 20px;
}

.r-service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.r-service-description {
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* FAQ Section */
.r-faq-section {
    padding: 96px 0;
    padding-top: 0;
    background-color: var(--background);
}

.r-faq-container {
    max-width: 800px;
}

.r-faq-header {
    text-align: center;
    margin-bottom: 25px;
}

.r-faq-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: rgba(249, 115, 22, 0.1);
    border-radius: 9999px;
    margin-bottom: 16px;
}

.r-faq-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.r-faq-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
}

.r-faq-subtitle {
    font-size: 20px;
    color: var(--muted-foreground);
}

.r-faq-accordion {
    display: flex;
    flex-direction: column;
}

.r-faq-item {
    border: 2px solid var(--muted);
    border-radius: 16px;
    padding: 16px 24px;
    transition: all 0.3s ease;
}

.r-faq-item:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.r-faq-question {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    padding: 16px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.r-faq-question span {
    position: relative;
    display: block;
    padding-right: 25px;
    width: 100%;
}

.r-faq-question span::before {
    content: '';
    width: 7px;
    height: 7px;
    border-top: 2px solid #222429;
    border-right: 2px solid #222429;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%) rotate(135deg);
}

.r-faq-answer {
    font-size: 16px;
    color: var(--muted-foreground);
    padding: 16px 0;
    line-height: 1.6;
}

.text-amber {
    color: var(--brand-amber);
}

.bg-amber {
    background-color: var(--brand-amber);
}

/* CTA Section */
.r-cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #000000f2, #1f1714);
    padding: 96px 0;
}

.r-cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.r-cta-container {
    max-width: 800px;
    text-align: center;
    position: relative;
}

.r-cta-title {
    font-size: 60px;
    font-weight: 900;
    color: var(--secondary-foreground);
    margin-bottom: 24px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.r-cta-title span {
    color: #FFAA17FF;
}

.r-cta-highlight {
    color: #FFAA17FF;
}

.r-cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.r-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.r-cta-primary-btn {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--primary);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.r-cta-primary-btn:hover {
    background-color: rgba(249, 115, 22, 0.9);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    color: white;
}

.r-cta-btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.r-cta-btn-icon {
    transition: transform 0.3s ease;
}

.r-cta-primary-btn:hover .r-cta-btn-icon {
    transform: translateX(4px);
}

.r-cta-secondary-btn {
    padding: 20px 40px;
    border: 2px solid white;
    color: white;
    font-size: 18px;
    font-weight: 700;
    background: transparent;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.r-cta-secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.r-cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    color: rgba(255, 255, 255, 0.8);
    z-index: 2;
    position: relative;
}

.r-cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.r-cta-check {
    color: var(--primary);
    font-weight: 700;
}

.seo-faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
}
.faq-container {
    max-width: 48rem;
    margin: 0 auto;
    margin-top: 3rem;
}
.seo-faq-item__hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 12px;
}

.seo-faq-item__hero h3 {
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 500;
    padding: 0.5rem 0;
    cursor: pointer;
}

.faq-question i:first-child {
    margin-right: 0.75rem;
}

.faq-answer {
    padding-left: 2.25rem;
    padding-top: 0.5rem;
    color: var(--gray-600);
    display: none;
    line-height: 1.5;
}

.faq-answer.active {
    display: block;
}

.faq-arrow {
    transition: transform 0.2s ease;
}

.faq-arrow.rotate {
    transform: rotate(180deg);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .r-hero-grid {
        grid-template-columns: 7fr 5fr;
    }

    .r-hero-buttons {
        flex-direction: row;
    }

    .r-input-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .r-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .r-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .r-cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .r-hero-title {
        font-size: 60px;
    }

    .r-results-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .r-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}