:root {
    --primary: #1a1a2e;
    --accent: #d4af37;
    --accent-hover: #b8941f;
    --text: #2a2a2a;
    --text-light: #666;
    --bg: #fafafa;
    --white: #ffffff;
    --border: #e5e5e5;
    --shadow: rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.logo-dot {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.nav-phone {
    font-weight: 600 !important;
    color: var(--accent) !important;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(212,175,55,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26,26,46,0.02) 0%, transparent 50%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-banner {
    background: rgba(212,175,55,0.15);
    border: 1px solid var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text);
}

.contact-banner a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    margin: 0 0.25rem;
}

.contact-banner a:hover {
    text-decoration: underline;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #b8941f);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow);
}

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

/* Portfolio Section */
.portfolio {
    padding: 8rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

.portfolio-grid {
    display: grid;
    gap: 4rem;
}

.project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.project-card:nth-child(even) {
    direction: rtl;
}

.project-card:nth-child(even) > * {
    direction: ltr;
}

.project-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.4s;
}

.project-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.project-mockup {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.mockup-header {
    background: #f8f8f8;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 0.4rem;
}

.mockup-dots::before,
.mockup-dots::after,
.mockup-dots {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.mockup-url {
    flex: 1;
    text-align: center;
    background: white;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.mockup-content {
    padding: 3rem 2rem;
}

/* HVAC Mockup */
.hvac-mockup .mockup-content {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.hvac-mockup h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hvac-mockup p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.mockup-btn {
    display: inline-block;
    background: white;
    color: #1e3a8a;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.mockup-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
}

.service-item {
    background: rgba(255,255,255,0.2);
    padding: 0.75rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Salon Mockup */
.salon-mockup .mockup-content {
    background: linear-gradient(135deg, #f8e5f0 0%, #fce4ec 100%);
    color: #c2185b;
}

.salon-mockup h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.salon-mockup p {
    margin-bottom: 1.5rem;
    color: #880e4f;
}

.salon-mockup .mockup-btn {
    background: #c2185b;
    color: white;
}

.mockup-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 2rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #ec407a, #f06292);
    border-radius: 8px;
}

/* Hair Salon Mockup */
.hair-mockup .mockup-content {
    background: linear-gradient(135deg, #212121 0%, #424242 100%);
    color: white;
}

.hair-mockup h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hair-mockup p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hair-mockup .mockup-btn {
    background: var(--accent);
    color: var(--primary);
}

.hair-mockup .service-item {
    background: rgba(212,175,55,0.2);
    color: var(--accent);
}

/* Restaurant Mockup */
.restaurant-mockup .mockup-content {
    background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
    color: white;
}

.restaurant-mockup h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.restaurant-mockup p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.restaurant-mockup .mockup-btn {
    background: white;
    color: #dc2626;
}

.restaurant-mockup .service-item {
    background: rgba(255,255,255,0.2);
}

/* Fitness Mockup */
.fitness-mockup .mockup-content {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
}

.fitness-mockup h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.fitness-mockup p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.fitness-mockup .mockup-btn {
    background: white;
    color: #059669;
}

.fitness-mockup .service-item {
    background: rgba(255,255,255,0.2);
}

/* Real Estate Mockup */
.realestate-mockup .mockup-content {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.realestate-mockup h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.realestate-mockup p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.realestate-mockup .mockup-btn {
    background: white;
    color: #1e40af;
}

.project-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
}

.tag {
    background: rgba(26,26,46,0.9);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-info {
    padding: 1rem 0;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.project-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.project-results {
    display: flex;
    gap: 2rem;
}

.result-item {
    display: flex;
    flex-direction: column;
}

.result-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--bg);
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-placeholder {
    background: linear-gradient(135deg, var(--primary), #2a2a3e);
    border-radius: 12px;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 60px var(--shadow);
}

.placeholder-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.about-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-cta {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
}

.about-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.services {
    padding: 8rem 0;
    background: var(--bg);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: var(--accent);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    padding: 8rem 0;
    background: white;
}

/* Trial Banner */
.trial-banner {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.3);
}

.trial-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.trial-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.trial-content p {
    font-size: 1.15rem;
    opacity: 0.95;
    line-height: 1.7;
}

.pricing-cards {
    display: grid;
    justify-content: center;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.3s;
    max-width: 600px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow);
}

.featured-single {
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--accent);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.25rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.pricing-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.pricing-btn.primary {
    background: var(--accent);
}

.guarantee-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Process Steps */
.pricing-process {
    background: var(--bg);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.pricing-process h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.pricing-note {
    text-align: center;
    background: #fff8e6;
    padding: 1.5rem;
    border-radius: 8px;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #2a2a3e 100%);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.method-content h4 {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-features {
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.method-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.method-content a {
    color: var(--accent);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    display: block;
}

.method-content a:hover {
    color: var(--accent-hover);
}

.method-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.contact-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.1rem;
}

.feature-icon {
    color: var(--accent);
    font-size: 1.5rem;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(212,175,55,0.2);
    color: var(--accent);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.success-message {
    display: none;
    background: #059669;
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.success-message.show {
    display: block;
}

.contact-form {
    color: var(--text);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.field-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.file-input {
    padding: 0.75rem !important;
    background: var(--bg);
    cursor: pointer;
}

.file-input::-webkit-file-upload-button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-right: 1rem;
}

.file-input::-webkit-file-upload-button:hover {
    background: var(--accent-hover);
}

.file-help {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--primary);
    color: white;
}

/* Payment Section */
.payment-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.payment-header {
    text-align: center;
    margin-bottom: 4rem;
}

.payment-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.payment-header p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.payment-info-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.payment-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.payment-checklist {
    list-style: none;
    margin-bottom: 2rem;
}

.payment-checklist li {
    padding: 0.75rem 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
}

.payment-note {
    background: #e3f2fd;
    border: 2px solid #2196F3;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.payment-note strong {
    color: #1565C0;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.payment-note p {
    color: #1565C0;
    margin: 0;
}

.payment-box {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 3px solid var(--accent);
}

.payment-amount {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent), #b8941f);
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.amount-label {
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.amount-price {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.amount-note {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.payment-methods h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.payment-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.payment-btn:hover {
    border-color: var(--accent);
    transform: translateX(5px);
    box-shadow: 0 5px 15px var(--shadow);
}

.payment-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.payment-btn-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.payment-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.payment-handle {
    font-size: 0.95rem;
    color: var(--text-light);
}

.payment-btn.venmo {
    border-color: #008CFF;
}

.payment-btn.venmo:hover {
    background: #f0f8ff;
    border-color: #008CFF;
}

.payment-btn.stripe-primary {
    border-color: #635BFF;
    background: linear-gradient(135deg, #635BFF, #7C3AED);
    color: white;
}

.payment-btn.stripe-primary .payment-name,
.payment-btn.stripe-primary .payment-handle {
    color: white;
}

.payment-btn.stripe-primary:hover {
    background: linear-gradient(135deg, #5145E5, #6B2FDB);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99, 91, 255, 0.3);
}

.payment-divider {
    text-align: center;
    position: relative;
    margin: 2rem 0;
}

.payment-divider::before,
.payment-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border);
}

.payment-divider::before {
    left: 0;
}

.payment-divider::after {
    right: 0;
}

.payment-divider span {
    background: white;
    padding: 0 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.payment-btn.zelle-option {
    border-color: #6D1ED4;
    background: white;
}

.payment-btn.zelle-option:hover {
    background: #f9f5ff;
    border-color: #6D1ED4;
    transform: translateX(0);
    cursor: default;
}

.zelle-qr-info {
    background: #f0f8ff;
    border: 2px solid #6D1ED4;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.zelle-qr-info p {
    margin: 0.5rem 0;
    color: var(--text);
}

.zelle-qr-info strong {
    color: #6D1ED4;
}

.zelle-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.payment-instructions {
    background: #fff8e6;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.payment-instructions p {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.payment-instructions ol {
    margin-left: 1.5rem;
    color: var(--text);
}

.payment-instructions ol li {
    margin-bottom: 0.5rem;
}

.payment-instructions a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.payment-security {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.9rem;
}

.payment-faq {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow);
}

.payment-faq h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
}

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

.faq-item {
    padding: 1.5rem;
    border-left: 4px solid var(--accent);
    background: var(--bg);
    border-radius: 8px;
}

.faq-item strong {
    color: var(--primary);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.footer {
    padding: 3rem 0;
    background: var(--primary);
    color: white;
}

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

.footer-brand p {
    margin-top: 0.5rem;
    opacity: 0.7;
}

.footer-info {
    text-align: right;
    opacity: 0.7;
}

.footer-info p {
    margin-bottom: 0.25rem;
}

.footer-contact {
    margin-top: 0.75rem !important;
    opacity: 0.9;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-contact a:hover {
    color: var(--accent);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .contact-banner {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        text-align: center;
    }

    .contact-banner br {
        display: none;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .payment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .payment-header h2 {
        font-size: 2rem;
    }

    .amount-price {
        font-size: 3rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .trial-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .trial-content h3 {
        font-size: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .project-card {
        grid-template-columns: 1fr;
    }

    .project-card:nth-child(even) {
        direction: ltr;
    }

    .project-results {
        flex-wrap: wrap;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }
}