:root {
    --green-900: #0b2f20;
    --green-700: #1a4a38;
    --green-500: #2c6e54;
    --green-200: #c6e3d4;
    --green-100: #edf8f2;
    --background: #f8fcfb;
    --accent: #ba4270;
    --accent-hover: #da6d97;
    --text-dark: #123524;
    --text-muted: #366b53;
    --text-light: #fbfdfe;
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'Public Sans', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Pattern */
.bg-circle {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 700px;
    height: 700px;
    background-color: var(--green-100);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1110px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--green-900);
    font-weight: 400;
}

h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 24px;
}

p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 32px;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--accent);
    color: #fff;
    padding: 14px 28px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(186, 66, 112, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--green-900);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-dot {
    width: 16px;
    height: 16px;
    background-color: var(--green-200);
    border-radius: 50%;
    position: relative;
}

.logo-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-900);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 700;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--green-900);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
    fill: var(--green-900);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0 80px;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.email-form {
    position: relative;
    max-width: 445px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    margin-bottom: 16px;
}

.email-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px 24px;
    font-size: 1rem;
    outline: none;
    font-family: var(--font-body);
    color: var(--green-900);
    border-radius: 30px;
}

.email-form .btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0;
}

.hero-contact {
    font-size: 0.9rem;
    margin-left: 24px;
}

.hero-contact a {
    color: var(--green-900);
    font-weight: 700;
}

/* Phone Mockup CSS Art */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.phone {
    width: 280px;
    height: 560px;
    background-color: var(--green-900);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(11, 47, 32, 0.25);
    position: relative;
    display: flex;
    flex-direction: column;
}

.phone-screen {
    background-color: #fbfdfe;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.phone-notch {
    width: 120px;
    height: 25px;
    background-color: var(--green-900);
    margin: 0 auto;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-glass {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transform: rotate(-30deg);
    pointer-events: none;
}

.app-header {
    background-color: var(--green-100);
    padding: 50px 20px 20px;
    text-align: center;
    color: var(--green-900);
}

.app-time {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
}

.app-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin: -10px 20px 20px;
    position: relative;
    z-index: 5;
}

.app-card h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.app-card p {
    font-size: 0.7rem;
    margin-bottom: 0;
}

/* Brands Section */
.brands-section {
    background-color: var(--green-900);
    padding: 100px 0;
    color: var(--text-light);
    overflow: hidden;
}

.brands-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.brands-container h2 {
    color: var(--text-light);
}

.brands-content {
    flex: 1;
    max-width: 445px;
}

.brands-content p {
    color: #c6e3d4;
    opacity: 0.8;
}

.brand-logos {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}

.brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    opacity: 0.9;
    text-align: center;
}

.brand.modern {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 2px;
}

/* Implementation Section */
.implement-section {
    padding: 120px 0;
}

.implement-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.code-window {
    flex: 1;
    background-color: var(--green-900);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 30px 60px rgba(11, 47, 32, 0.2);
    color: #c6e3d4;
    font-family: monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.mac-btns {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.mac-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.close {
    background: #ed6a5e;
}

.min {
    background: #f4bf4f;
}

.max {
    background: #61c554;
}

.implement-text {
    flex: 1;
}

/* UI UX Section */
.uiux-section {
    padding: 60px 0 120px;
}

.uiux-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.uiux-text {
    flex: 1;
    order: 2;
}

.uiux-images {
    flex: 1;
    order: 1;
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--green-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

/* Footer CTA */
.footer-cta {
    padding: 80px 0;
    text-align: center;
}

.footer-cta h2 {
    margin-bottom: 40px;
}

.footer-cta .email-form {
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: var(--green-900);
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .logo-text,
.footer .nav-links a {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 24px;
}

.social-icons a {
    color: #fff;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent);
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--green-900);
    z-index: 1000;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav .logo-text {
    color: #fff;
}

.close-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.close-menu-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.mobile-nav .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: center;
}

.mobile-nav .nav-links a {
    color: #fff;
    font-size: 1.25rem;
    width: 100%;
    text-align: center;
}

.mobile-nav .btn {
    width: 100%;
    margin-top: 20px;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* About Page Specific Styles */
.about-hero {
    max-width: 800px;
    margin: 40px auto 80px;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--green-900);
}

.about-section {
    padding: 40px 0;
}

.about-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.about-label {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--green-900);
}

.about-text {
    flex: 2;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-banner {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 500px;
    margin-bottom: 80px;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stats-section {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 40px 0;
    margin-bottom: 80px;
    gap: 40px;
}

.stat-item {
    flex: 1;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--accent);
    line-height: 1;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
        text-align: left;
    }

    .about-hero {
        margin: 40px 0;
    }

    .about-row {
        flex-direction: column;
        gap: 20px;
    }

    .stats-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        border-top: none;
    }

    .stat-item {
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .about-banner {
        height: 300px;
    }
}

/* Form Pages Setup */
.form-hero {
    max-width: 500px;
    margin: 60px auto 100px;
    padding: 0 24px;
}

.form-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 40px;
}

.custom-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custom-form input,
.custom-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-bottom: 1px solid rgba(11, 47, 32, 0.2);
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--green-900);
    outline: none;
    transition: var(--transition);
}

.custom-form input::placeholder,
.custom-form textarea::placeholder {
    color: rgba(11, 47, 32, 0.5);
}

.custom-form input:focus,
.custom-form textarea:focus {
    border-bottom-color: var(--accent);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.custom-form .btn-outline {
    width: 100%;
    margin-top: 20px;
}

.custom-form .btn-outline:hover {
    background: var(--green-900) !important;
    color: #fff !important;
}

/* Contact Page Split Layout */
.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    padding: 80px 0;
}

.contact-text {
    flex: 1;
}

.contact-info {
    margin-top: 40px;
}

.contact-info h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--green-900);
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.contact-form-wrapper {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Schedule Page Layout */
.schedule-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    padding: 80px 0;
}

.schedule-benefits {
    flex: 1;
}

.schedule-benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.benefit-item svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
}

/* Pricing Page */
.pricing-section {
    padding: 80px 0;
    text-align: center;
}

.pricing-section h1 {
    margin-bottom: 60px;
    color: var(--green-900);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    text-align: left;
    background: transparent;
    padding: 40px;
    border-radius: 12px;
    transition: var(--transition);
}

.pricing-card h3 {
    color: var(--accent);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.pricing-card h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(11, 47, 32, 0.2);
    padding-bottom: 24px;
    color: var(--green-900);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 16px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}

.pricing-features li.disabled {
    opacity: 0.5;
}

.pricing-features li.disabled::before {
    content: '';
    display: inline-block;
    width: 12px;
}

/* General Responsive Reset */
@media (max-width: 768px) {

    .contact-section,
    .schedule-section {
        flex-direction: column;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        width: 100%;
        padding: 24px;
    }
}

/* End Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content,
    .brands-content {
        max-width: 100%;
    }

    .email-form {
        margin: 0 auto 16px;
    }

    .brands-container,
    .implement-container,
    .uiux-container {
        flex-direction: column;
        text-align: center;
    }

    .uiux-images {
        order: 2;
    }

    .uiux-text {
        order: 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .brand-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer .nav-links {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        margin-bottom: 20px;
    }

    .email-form {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        align-items: stretch;
        gap: 16px;
    }

    .email-input {
        background: #fff;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }

    .email-form .btn {
        position: relative;
        width: 100%;
    }

    .brand-logos {
        grid-template-columns: 1fr;
    }

    .uiux-images {
        flex-direction: column;
    }
}