/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Discount Banner */
.discount-banner {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.discount-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: subtle-shimmer 4s ease-in-out infinite;
}

@keyframes subtle-shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.discount-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.discount-icon {
    color: #d4af37;
    font-size: 1.1rem;
    opacity: 0.9;
}

.discount-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.discount-detail {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 400;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    padding-left: 1rem;
    margin-left: 0.5rem;
}


body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fefcf8;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #1a365d;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a365d;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #4a5568;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.price-disclaimer {
    font-size: 0.85rem;
    text-align: center;
    color: #718096;
    font-style: italic;
    margin-bottom: 3rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Header */
.header {
    background: linear-gradient(135deg, #fefcf8 0%, #f7f3e9 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(218, 165, 32, 0.1);
    position: sticky;
    top: 0;
    z-index: 99;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a365d;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #d4af37;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fefcf8 0%, #f7f3e9 50%, #ede4d3 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cross-symbol {
    font-size: 3rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.8;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a365d;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.scripture {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #d4af37;
    padding: 1.5rem 2rem;
    margin: 2rem 0 3rem;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.scripture p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.scripture cite {
    font-size: 0.9rem;
    color: #d4af37;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #b8941f 0%, #d4af37 100%);
}

/* Tier System */
.tiers {
    padding: 6rem 0;
    background: #fefcf8;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tier-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    overflow: visible;
}


/* Urgency Badges */
.urgency-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    z-index: 10;
}

.urgency-badge.subtle {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
}

.tier-card.featured {
    border: 2px solid #d4af37;
    transform: scale(1.05);
}

.tier-card.premium {
    border: 2px solid #d4af37;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4af37;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tier-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.tier-price {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Price Container Styles */
.price-container {
    text-align: center;
    position: relative;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.current-price {
    font-size: 1.8rem;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.usd-price {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

.discount-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-top: 0.5rem;
}

.tier-description {
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tier-button {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.tier-button:hover {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    transform: translateY(-2px);
}

.tier-submit-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a365d;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.tier-submit-btn:hover {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    transform: translateY(-2px);
}

/* Payment Form */
.payment-form {
    background: linear-gradient(135deg, #fefcf8 0%, #f8f6f0 100%);
    padding: 4rem 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid #d4af37;
}

.blessing-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    position: relative;
}

.blessing-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 2px;
}

.blessing-header h2 {
    color: #1a365d;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.blessing-header h2::before {
    content: '✨';
    position: absolute;
    left: -3rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.7;
}

.blessing-header h2::after {
    content: '✨';
    position: absolute;
    right: -3rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.7;
}

.selected-blessing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fefcf8 0%, #f8f6f0 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 3px solid #d4af37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.selected-blessing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
}

.blessing-details {
    text-align: center;
}

.blessing-details h3 {
    color: #1a365d;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 0 0 0.75rem 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blessing-price {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: bold;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    border: 2px solid #d4af37;
    display: inline-block;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

/* Payment Price Container */
.payment-price-container {
    text-align: center;
    margin: 1rem 0;
}

.original-payment-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.current-payment-price {
    font-size: 1.4rem;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.savings-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

.order-steps {
    margin-bottom: 2rem;
}

.step-section {
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 16px;
    border-left: 6px solid #d4af37;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.step-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
    border-radius: 16px 16px 0 0;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step-number {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4rem;
    margin-right: 1.5rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    border: 3px solid white;
}

.step-header h3 {
    color: #1a365d;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.payment-instructions {
    margin-top: 1rem;
}

.payment-instructions p {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.payment-note {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    margin-top: 1rem;
}

.payment-note p {
    color: #856404;
    margin: 0;
    font-weight: 500;
}

.payment-help {
    margin: 1.5rem 0;
    text-align: center;
}

.help-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.help-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.selected-tier {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

.selected-tier h3 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.selected-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a365d;
}

/* Payment Agreement Styling */
.payment-agreement {
    margin: 2rem 0;
}

.agreement-container {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.agreement-container:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.08);
}

.checkbox-wrapper {
    position: relative;
    flex-shrink: 0;
}

.checkbox-wrapper input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 24px;
    height: 24px;
    margin: 0;
    cursor: pointer;
}

.custom-checkbox {
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid #d4af37;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.custom-checkbox:hover {
    border-color: #b8941f;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.2s ease;
}

input[type="checkbox"]:checked + .custom-checkbox {
    background: #d4af37;
    border-color: #d4af37;
}

input[type="checkbox"]:checked + .custom-checkbox .checkmark {
    transform: translate(-50%, -50%) scale(1);
}

.agreement-text {
    flex: 1;
}

.agreement-text p {
    margin: 0 0 0.5rem 0;
    color: #1a365d;
    font-weight: 500;
    line-height: 1.5;
}

.agreement-text small {
    color: #4a5568;
    font-size: 0.85rem;
    line-height: 1.4;
}

.agreement-text a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.agreement-text a:hover {
    color: #b8941f;
    text-decoration: underline;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #d4af37;
}

.bitcoin-payment {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.bitcoin-payment h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.btc-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.btc-address code {
    background: #e2e8f0;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    flex: 1;
    min-width: 200px;
}

.copy-btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: #b8941f;
}

.qr-placeholder {
    margin: 1.5rem 0;
    padding: 2rem;
    border: 2px dashed #d4af37;
    border-radius: 8px;
    color: #4a5568;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a365d;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.back-btn {
    background: none;
    border: 2px solid #4a5568;
    color: #4a5568;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #4a5568;
    color: white;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    padding: 5rem 0;
    color: white;
}

.testimonials .section-title {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    color: #1a365d;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
}

.testimonial-card.featured {
    transform: scale(1.05);
    border: 3px solid #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.star {
    color: #d4af37;
    font-size: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    color: #2d3748;
    text-align: center;
}

.testimonial-author {
    text-align: center;
    border-top: 2px solid #f0f0f0;
    padding-top: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: #1a365d;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.location {
    color: #4a5568;
    font-size: 0.9rem;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .testimonials-stats {
        gap: 2rem;
    }
    
    .stat {
        min-width: 120px;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

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

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.mission-statement {
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 4px solid #d4af37;
}

.mission-statement h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

.faq-guide-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.faq-guide-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

/* Contact Section Styling */
.contact-intro {
    font-size: 1.2rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #b8941f);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.email-card .contact-icon {
    color: #4299e1;
}

.bitcoin-card .contact-icon {
    color: #f7931a;
}

.contact-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-value {
    margin-bottom: 1rem;
}

.email-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.1);
    display: inline-block;
    transition: all 0.3s ease;
}

.email-link:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
}

.bitcoin-address {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.bitcoin-address code {
    background: #f8f9fa;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    word-break: break-all;
    border: 2px solid #e2e8f0;
    font-family: 'Courier New', monospace;
    color: #2d3748;
    max-width: 100%;
}

.copy-address-btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.copy-address-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.contact-card small {
    color: #718096;
    font-style: italic;
    font-size: 0.85rem;
}

.contact-footer {
    text-align: center;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border-left: 4px solid #d4af37;
}

.contact-footer p {
    color: #4a5568;
    font-style: italic;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1a365d;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid #2c5282;
    padding-top: 1rem;
    text-align: center;
    color: #cbd5e0;
}

.footer-bottom a {
    color: #d4af37;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav {
        display: none;
    }
    
    .tier-grid {
        grid-template-columns: 1fr;
    }
    
    .tier-card.featured {
        transform: none;
    }
    
    .form-container {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .btc-address {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btc-address code {
        min-width: auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .bitcoin-address {
        flex-direction: column;
    }
    
    .agreement-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .checkbox-wrapper {
        align-self: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Mobile Urgency Elements */
    .urgency-badge {
        position: static;
        margin: 0.5rem 0;
        display: inline-block;
    }
    
    .tier-price {
        min-height: auto;
    }
    
    /* Mobile Discount Banner */
    .discount-content {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .discount-detail {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        font-size: 0.8rem;
    }
    
    .discount-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .tiers,
    .about,
    .faq,
    .contact {
        padding: 4rem 0;
    }
    
    .scripture {
        padding: 1rem;
        margin: 1.5rem 0 2rem;
    }
    
    /* Small Mobile Adjustments */
    .current-price {
        font-size: 1.5rem;
    }
    
    .original-price {
        font-size: 1rem;
    }
    
    /* Small Mobile Discount Banner */
    .discount-banner {
        padding: 0.5rem 0;
    }
    
    .discount-text {
        font-size: 0.9rem;
    }
    
    .discount-detail {
        font-size: 0.75rem;
    }
    
    .discount-icon {
        font-size: 1rem;
    }
}
