/* Reset en basis styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f6f2e7 0%, #e8dcc0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #555;
}

.feature-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* iPhone Showcase */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.iphone-showcase {
    position: relative;
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.3s ease;
}

.iphone-showcase:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.iphone-device {
    position: relative;
    width: clamp(280px, 25vw, 380px);
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
}

.iphone-frame {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.iphone-screen {
    position: absolute;
    top: 1.2%;
    left: 2.5%;
    width: 95%;
    height: 98%;
    overflow: hidden;
    border-radius: 38px;
    background: #000;
}

.iphone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    border-radius: 50%;
    opacity: 0.6;
}

.dot-1 {
    top: 10%;
    left: -50px;
    animation: floatDot1 8s ease-in-out infinite;
}

.dot-2 {
    top: 50%;
    right: -40px;
    animation: floatDot2 10s ease-in-out infinite;
}

.dot-3 {
    bottom: 20%;
    left: -30px;
    animation: floatDot3 12s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatDot1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -20px);
    }
    66% {
        transform: translate(-20px, 10px);
    }
}

@keyframes floatDot2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-40px, 20px) scale(1.5);
    }
}

@keyframes floatDot3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(50px, -30px) rotate(180deg);
    }
}

/* Experimental Badge */
.experimental-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Features Section - Apple Style */
.features {
    padding: 120px 0;
    background-color: #f5f5f7;
}

.features-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
}

.features-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.003em;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.features-subtitle {
    font-size: 24px;
    line-height: 1.4;
    color: #86868b;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 60px;
    max-width: 980px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
}

.feature-icon-wrapper {
    width: 88px;
    height: 88px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(184, 149, 106, 0.1) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-item:hover .feature-icon-wrapper {
    transform: scale(1.05);
}

.feature-icon {
    font-size: 44px;
    filter: none;
}

.feature-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
    letter-spacing: -0.002em;
}

.feature-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #86868b;
    font-weight: 400;
    max-width: 380px;
    margin: 0 auto;
}

/* How It Works Section - Apple Style */
.how-it-works {
    padding: 120px 0;
    background: #ffffff;
}

.how-it-works-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.how-it-works-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.002em;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.how-it-works-subtitle {
    font-size: 21px;
    line-height: 1.4;
    color: #86868b;
    font-weight: 400;
}

.steps-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 0, 0, 0.1);
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid #d4a574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: 600;
    color: #d4a574;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-left: 40px;
    padding-top: 8px;
}

.step-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
    letter-spacing: -0.002em;
}

.step-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #86868b;
    margin-bottom: 20px;
}

.download-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #000000;
    color: white;
    text-decoration: none;
    border-radius: 980px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.download-btn:hover {
    transform: scale(1.05);
    background: #1d1d1f;
}

.signal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    color: white;
    text-decoration: none;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 12px;
}

.signal-link:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(212, 165, 116, 0.3);
}

/* Screenshots Section - Apple Style */
.screenshots {
    padding: 120px 0;
    background: #ffffff;
}

.screenshots-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.screenshots-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.002em;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.screenshots-description {
    font-size: 21px;
    line-height: 1.4;
    color: #86868b;
    font-weight: 400;
}

.screenshots-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 120px;
    margin-bottom: 120px;
}

.showcase-row:last-child {
    margin-bottom: 0;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.device-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.device-screenshot {
    width: 280px;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25),
                0 18px 36px -18px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.showcase-item:hover .device-screenshot {
    transform: scale(1.02) translateY(-4px);
}

.showcase-content h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.002em;
    color: #1d1d1f;
    margin-bottom: 15px;
}

.showcase-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #86868b;
    font-weight: 400;
}

/* Alternating layout - Apple style */
/* First row: image left, text right | text left, image right */
/* Second row: text left, image right | image left, text right */

/* Second row - alternate both items */
.showcase-row:nth-child(2) .showcase-item:nth-child(1) .device-wrapper {
    order: 2;
}

.showcase-row:nth-child(2) .showcase-item:nth-child(1) .showcase-content {
    order: 1;
}

.showcase-row:nth-child(2) .showcase-item:nth-child(2) .device-wrapper {
    order: 2;
}

.showcase-row:nth-child(2) .showcase-item:nth-child(2) .showcase-content {
    order: 1;
}

/* Supported Churches Section - Apple Style */
.supported-churches {
    padding: 120px 0;
    background: #f5f5f7;
}

.churches-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.churches-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.002em;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.churches-subtitle {
    font-size: 21px;
    line-height: 1.4;
    color: #86868b;
    font-weight: 400;
}

.churches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.church-card {
    background: white;
    padding: 32px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.church-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.church-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.church-name {
    font-size: 21px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.001em;
    line-height: 1.3;
}

.churches-cta {
    text-align: center;
    margin-top: 60px;
}

.churches-cta p {
    font-size: 21px;
    color: #86868b;
    margin-bottom: 24px;
}

.churches-cta-button {
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    color: #d4a574;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #d4a574;
    border-radius: 980px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.churches-cta-button:hover {
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
}

/* Signup Section - Apple Style */
.signup {
    padding: 120px 0;
    background: #f5f5f7;
}

.signup-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.signup-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.002em;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.signup-subtitle {
    font-size: 21px;
    line-height: 1.4;
    color: #86868b;
    font-weight: 400;
    margin-bottom: 15px;
}

.signup-note {
    font-size: 17px;
    color: #86868b;
    margin-bottom: 50px;
    font-style: italic;
}

.signup-content {
    max-width: 500px;
    margin: 0 auto;
}

.signup-form {
    background: white;
    padding: 48px;
    border-radius: 18px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1d1d1f;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.001em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: all 0.2s ease;
    background-color: #ffffff;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    margin-top: 32px;
}

.submit-button:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(212, 165, 116, 0.3);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.button-loading {
    display: none;
}

.submit-button.loading .button-text {
    display: none;
}

.submit-button.loading .button-loading {
    display: inline;
}

/* Experimental Badge */
.experimental-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

/* Preview Banner */
.preview-banner {
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    color: white;
    padding: 16px 0;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.001em;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


/* Download Buttons */
.download-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.download-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Signal Link */
.signal-link {
    display: inline-block;
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(33, 150, 243, 0.3);
}

.signal-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

/* Experimental Disclaimer */
.experimental-disclaimer {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.experimental-disclaimer p {
    color: #856404;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Experimental Banner */
.experimental-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2.5rem auto;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.15);
}

.experimental-content {
    text-align: center;
}

.experimental-content .experimental-badge {
    background: rgba(245, 158, 11, 0.2);
    color: #92400e;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.experimental-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #78350f;
    margin: 0;
    font-weight: 500;
}


/* Footer - Apple Style */
.footer {
    background-color: #1d1d1f;
    color: #f5f5f7;
    padding: 48px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-content {
    font-size: 13px;
    line-height: 1.6;
    color: #a1a1a6;
}

.footer-content p {
    margin: 0;
    margin-bottom: 8px;
}

.footer-content p:last-child {
    margin-bottom: 0;
}

.footer-credit {
    margin-top: 16px;
    font-size: 13px;
    color: #a1a1a6;
}

.footer-disclaimer {
    margin-top: 8px;
    font-size: 12px;
    color: #a1a1a6;
    opacity: 0.8;
}

/* Transparency Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: #ffffff;
    margin: 40px auto;
    padding: 0;
    border: none;
    border-radius: 18px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
    letter-spacing: -0.002em;
}

.modal-close {
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: #86868b;
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #1d1d1f;
}

.modal-body {
    padding: 32px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.transparency-section {
    margin-bottom: 48px;
}

.transparency-section:last-child {
    margin-bottom: 0;
}

.transparency-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    letter-spacing: -0.001em;
}

.transparency-section p {
    font-size: 17px;
    line-height: 1.6;
    color: #424245;
    margin-bottom: 20px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.process-step {
    background: #f5f5f7;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.process-step h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    color: #86868b;
    margin: 0;
}

.ai-info {
    background: #f5f5f7;
    padding: 24px;
    border-radius: 12px;
    margin-top: 24px;
}

.ai-info h4 {
    font-size: 19px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.ai-info ul {
    margin: 12px 0;
    padding-left: 24px;
}

.ai-info li {
    font-size: 16px;
    color: #424245;
    margin-bottom: 8px;
}

.ai-info .note {
    font-size: 15px;
    color: #86868b;
    font-style: italic;
    margin-top: 12px;
}

.consideration {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.consideration:last-child {
    border-bottom: none;
}

.consideration h4 {
    font-size: 19px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.consideration p {
    font-size: 16px;
    margin: 0;
}

.transparency-footer {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 48px;
}

.transparency-footer p {
    font-size: 17px;
    color: #424245;
    margin-bottom: 20px;
}

.contact-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    color: white;
    padding: 12px 32px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.transparency-link {
    color: #d4a574;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.transparency-link:hover {
    color: #b8956a;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Features responsive */
    .features {
        padding: 80px 0;
    }
    
    .features-header {
        margin-bottom: 60px;
    }
    
    .features-title {
        font-size: 36px;
    }
    
    .features-subtitle {
        font-size: 18px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .feature-icon-wrapper {
        width: 72px;
        height: 72px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        font-size: 36px;
    }
    
    .feature-item h3 {
        font-size: 21px;
    }
    
    .feature-item p {
        font-size: 16px;
    }
    
    /* Churches responsive */
    .supported-churches {
        padding: 80px 0;
    }
    
    .churches-title {
        font-size: 36px;
    }
    
    .churches-subtitle {
        font-size: 18px;
    }
    
    .churches-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* How it works responsive */
    .how-it-works {
        padding: 80px 0;
    }
    
    .how-it-works-title {
        font-size: 36px;
    }
    
    .how-it-works-subtitle {
        font-size: 18px;
    }
    
    .steps-timeline::before {
        display: none;
    }
    
    .steps-timeline::before {
        display: none;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .step-number {
        margin-bottom: 20px;
        margin-left: 0;
    }
    
    .step-content {
        padding-left: 0;
        padding-top: 0;
    }
    
    .step-content h3 {
        font-size: 24px;
    }
    
    /* Signup responsive */
    .signup {
        padding: 80px 0;
    }
    
    .signup-title {
        font-size: 36px;
    }
    
    .signup-subtitle {
        font-size: 18px;
    }
    
    .signup-form {
        padding: 32px 24px;
    }

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 2rem 0 3rem;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-features {
        align-items: flex-start;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
    
    .hero-feature {
        text-align: left;
        justify-content: flex-start;
    }
    
    .hero-visual {
        padding-bottom: 3rem;
    }
    
    .experimental-badge {
        margin-top: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .iphone-device {
        width: 300px;
    }
    
    .iphone-showcase {
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .floating-dot {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: none;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 80%;
    }
    
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        font-size: 0.9rem;
    }
    
    .iphone-device {
        width: 320px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Screenshots responsive */
@media (max-width: 768px) {
    .screenshots {
        padding: 60px 0;
    }
    
    .screenshots-header {
        margin-bottom: 40px;
    }
    
    .screenshots-title {
        font-size: 32px;
    }
    
    .screenshots-description {
        font-size: 18px;
    }
    
    .showcase-row {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-bottom: 60px;
    }
    
    .showcase-item {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    /* Reset alternating on mobile - all screenshots on top */
    .showcase-item .device-wrapper {
        order: 1 !important;
    }
    
    .showcase-item .showcase-content {
        order: 2 !important;
    }
    
    .device-screenshot {
        width: 276px;
    }
    
    .showcase-content h3 {
        font-size: 24px;
    }
    
    .showcase-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .screenshots-title {
        font-size: 28px;
    }
    
    .screenshots-description {
        font-size: 16px;
    }
    
    .device-screenshot {
        width: 230px;
    }
    
    .showcase-content h3 {
        font-size: 21px;
    }
    
    .showcase-content p {
        font-size: 15px;
    }
}

/* Animaties */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}


.step {
    animation: fadeInUp 0.8s ease-out;
}

.step:nth-child(2) {
    animation-delay: 0.2s;
}

.step:nth-child(3) {
    animation-delay: 0.4s;
}

.step:nth-child(4) {
    animation-delay: 0.6s;
}