:root {
    --forest-dark: #1a3d2e;
    --forest-main: #2d5f4c;
    --forest-light: #4a8f73;
    --terracotta: #d16847;
    --terracotta-light: #e88968;
    --cream: #faf7f2;
    --warm-white: #ffffff;
    --gray-900: #1a1a1a;
    --gray-700: #4a4a4a;
    --gray-500: #7a7a7a;
    --gray-300: #d0d0d0;
    --gray-100: #f5f5f5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--cream);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-title.centered {
    text-align: center;
}

.section-intro {
    font-size: 1.25rem;
    color: var(--gray-700);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-intro.centered {
    text-align: center;
}

.highlight {
    color: var(--forest-main);
    position: relative;
}

.highlight-alt {
    color: var(--terracotta);
}

.title-accent {
    color: var(--gray-700);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background-color: var(--forest-dark);
    color: var(--warm-white);
    box-shadow: 0 4px 12px rgba(26, 61, 46, 0.2);
}

.btn-primary:hover {
    background-color: var(--forest-main);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 61, 46, 0.3);
}

.btn-secondary {
    background-color: var(--terracotta);
    color: var(--warm-white);
    box-shadow: 0 4px 12px rgba(209, 104, 71, 0.2);
}

.btn-secondary:hover {
    background-color: var(--terracotta-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(209, 104, 71, 0.3);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream) 0%, #e8f4ed 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 120%;
    background: radial-gradient(circle, rgba(74, 143, 115, 0.08) 0%, transparent 70%);
    transform: rotate(-15deg);
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(26, 61, 46, 0.08);
    color: var(--forest-dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-cta-subtext {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.hero-cta-subtext svg {
    color: var(--forest-main);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.mockup-frame {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.mockup-browser {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.browser-bar {
    background: #e5e5e5;
    padding: 0.75rem;
    display: flex;
    align-items: center;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
}

.browser-dots span:nth-child(1) {
    background: #ff5f57;
}

.browser-dots span:nth-child(2) {
    background: #febc2e;
}

.browser-dots span:nth-child(3) {
    background: #28c840;
}

.mockup-content {
    padding: 2rem;
    background: linear-gradient(to bottom, var(--forest-main), var(--forest-dark));
    min-height: 300px;
}

.mockup-placeholder {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.placeholder-header {
    width: 60%;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    animation: shimmer 2s infinite;
}

.placeholder-text {
    width: 80%;
    height: 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    animation: shimmer 2s infinite 0.2s;
}

.placeholder-text.short {
    width: 60%;
    animation: shimmer 2s infinite 0.4s;
}

.placeholder-button {
    width: 150px;
    height: 45px;
    background: var(--terracotta);
    border-radius: 6px;
    margin-top: 1rem;
    animation: pulse 2s infinite;
}

.mockup-mobile {
    position: absolute;
    bottom: -40px;
    right: -60px;
    width: 180px;
    height: 360px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    padding: 12px;
    transform: perspective(1000px) rotateY(5deg);
}

.mobile-notch {
    width: 40%;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 12px 12px;
    margin: 0 auto 12px;
}

.mobile-content {
    background: linear-gradient(to bottom, var(--forest-light), var(--forest-main));
    height: calc(100% - 37px);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.placeholder-mobile-header {
    width: 80%;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    animation: shimmer 2s infinite 0.5s;
}

.placeholder-mobile-text {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    animation: shimmer 2s infinite 0.7s;
}

.placeholder-mobile-button {
    width: 90px;
    height: 32px;
    background: var(--terracotta);
    border-radius: 4px;
    margin-top: auto;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: white;
}

.section-header {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

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

.problem-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--terracotta);
    transform: translateY(-5px);
}

.problem-icon {
    color: var(--terracotta);
    margin-bottom: 1.5rem;
}

.problem-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.problem-description {
    color: var(--gray-700);
    line-height: 1.7;
}

.problem-conclusion {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(209, 104, 71, 0.1) 0%, rgba(26, 61, 46, 0.1) 100%);
    border-radius: 12px;
    font-size: 1.125rem;
}

.problem-conclusion strong {
    color: var(--forest-dark);
}

/* Solution Section */
.solution-section {
    padding: 6rem 0;
    background: var(--forest-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(74, 143, 115, 0.1) 0%, transparent 70%);
    transform: rotate(25deg);
}

.solution-content {
    position: relative;
    z-index: 1;
}

.solution-text {
    max-width: 1100px;
    margin: 0 auto;
}

.solution-intro {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.solution-features {
    display: grid;
    gap: 2.5rem;
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
}

.feature-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: white;
}

.process-timeline {
    max-width: 900px;
    margin: 4rem auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--forest-main), var(--forest-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(26, 61, 46, 0.2);
}

.step-connector {
    position: absolute;
    left: 40px;
    top: 80px;
    width: 3px;
    height: calc(100% + 3rem);
    background: linear-gradient(to bottom, var(--forest-main), transparent);
}

.process-step:last-child .step-connector {
    display: none;
}

.step-content {
    padding-top: 0.5rem;
}

.step-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.step-description {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.process-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 0;
    background: var(--cream);
}

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

.portfolio-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    height: 240px;
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder styles removed - using real screenshots with browser frames */

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.portfolio-result {
    color: var(--gray-700);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--forest-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.portfolio-link:hover {
    color: var(--forest-dark);
}

/* Included Section */
.included-section {
    padding: 6rem 0;
    background: white;
}

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

.included-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.included-check {
    width: 36px;
    height: 36px;
    background: var(--forest-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.included-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.included-content p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-callout {
    max-width: 700px;
    margin: 4rem auto 0;
    background: linear-gradient(135deg, var(--forest-dark), var(--forest-main));
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(26, 61, 46, 0.3);
}

.pricing-content {
    color: white;
}

.pricing-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-note {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--cream);
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-quote {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 6rem;
    line-height: 1;
    color: var(--terracotta);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--forest-main), var(--forest-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
}

.author-title {
    font-size: 0.9rem;
    color: var(--gray-700);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-grid {
    max-width: 900px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--forest-main);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--forest-main);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--forest-dark) 0%, #1a2d26 100%);
    color: white;
}

.cta-intro {
    text-align: center;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

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

.step-num {
    width: 50px;
    height: 50px;
    background: var(--terracotta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.cta-step p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--forest-main);
    box-shadow: 0 0 0 3px rgba(45, 95, 76, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-privacy {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-location {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .mockup-mobile {
        right: -40px;
        bottom: -30px;
        width: 150px;
        height: 300px;
    }

    .process-timeline {
        gap: 2rem;
    }

    .pricing-callout {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero {
        padding: 4rem 0 3rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

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

    .mockup-mobile {
        display: none;
    }

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

    .step-connector {
        display: none;
    }

    .step-number {
        margin: 0 auto;
    }

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

@media (max-width: 480px) {
    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-cta {
        width: 100%;
    }
}