/* Base Styles & Variables */
:root {
    --primary: #10B981;
    --primary-dark: #079465;
    --dark-green: #0B4D3C;
    --dark-green-deep: #083D30;
    --mint-light: #F0FDF9;
    --mint-lighter: #F7FEFB;
    --secondary: #10B981;
    --dark: #1F2937;
    --light: #F9FAFB;
    --gray: #6B7280;
    --light-gray: #E5E7EB;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
    font-size: 0.9375rem;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.section {
    padding: 80px 0;
    background-color: #fff !important;
}

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

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

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
}


/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9375rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white !important;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 105, 246, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: rgba(36, 105, 246, 0.05);
}

.btn-light {
    background-color: white;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}


/* Credit Packages Section */
.credits {
    background-color: var(--light);
    padding: 60px 0;
}

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

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

.credits__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.credits__card--popular {
    border-color: var(--primary);
}

.credits__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.credits__name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.credits__price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.credits__amount {
    background: var(--light);
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.credits__cost {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.credits__button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background-color: var(--dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.credits__button:hover {
    background-color: #111827;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta__subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta__button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta__contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta__contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta__contact-icon {
    font-size: 1.2rem;
}

/* Data Processing Agreement (DPA) Page Stylesheet */

/* Base styles and variables */
@import url('./base.css');

/* Shared Components */
@import url('./buttons.css');
@import url('./header.css');
@import url('./footer.css');

/* Responsive styles */
@import url('./responsive.css');

/* DPA page specific styles */
.dpa-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 20px 60px;
}

.dpa-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--primary);
}

.dpa-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.dpa-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
}

.dpa-content {
    line-height: 1.8;
}

.dpa-section {
    margin-bottom: 40px;
}

.dpa-section h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    padding-top: 20px;
    counter-increment: section;
}

.dpa-section h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

.dpa-section p {
    margin-bottom: 15px;
    color: var(--gray);
}

.dpa-section ul,
.dpa-section ol {
    margin: 15px 0;
    padding-left: 30px;
}

.dpa-section li {
    margin-bottom: 10px;
    color: var(--gray);
}

.dpa-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.dpa-table th,
.dpa-table td {
    border: 1px solid var(--light-gray);
    padding: 12px;
    text-align: left;
}

.dpa-table th {
    background: var(--light);
    color: var(--dark);
    font-weight: 600;
}

.dpa-important {
    background: #fff3cd;
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

/* FAQ Section */
.faq__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.faq__title {
    font-size: 1.875rem;
    margin-bottom: 2rem;
}

.faq__item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.faq__question {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
}

.faq__answer {
    color: var(--gray);
    display: none;
}

.faq__item.active .faq__answer {
    display: block;
}

.faq__item.active .faq__question::after {
    content: '-';
}

.faq__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq__placeholder {
    width: 100%;
    max-width: 500px;
    height: 300px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

.faq__placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary);
    opacity: 0.5;
}

/* Features Section */
.features {
    background-color: var(--light);
}

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

.features__item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.features__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.features__icon {
    width: 60px;
    height: 60px;
    background: rgba(36, 246, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.features__icon-svg {
    font-size: 1.5rem;
    color: var(--primary);
}

.features__item-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.features__item-text {
    color: var(--gray);
    font-size: 0.875rem;
}

.figma-hero {
    background: linear-gradient(135deg, #f5f3ff 0%, #f0f9ff 100%);
}

.figma-demo {
    padding: 60px 0;
    background: var(--light);
}

.figma-demo__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 50px 0 30px;
}

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

.footer__logo img {
    height: 35px;
    width: auto;
    opacity: 0.9;
}

.footer__text {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    flex-grow: 1;
    margin: 0 2rem;
}

.footer__links {
    display: flex;
    gap: 1.5rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: white;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.header__logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    transition: color 0.3s ease;
    text-decoration: none;
}

.header__logo:hover {
    color: var(--primary);
    text-decoration: none;
}

.header__logo img {
    height: 40px;
    width: auto;
}

.header__nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header__nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.header__nav-link:hover {
    color: var(--primary);
}

/* Dropdown Navigation */
.header__nav-dropdown {
    position: relative;
}

.header__nav-link i {
    font-size: 0.75rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.header__nav-dropdown:hover .header__nav-link i {
    transform: rotate(180deg);
}

.header__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 8px 0;
    z-index: 1001;
}

.header__nav-dropdown:hover .header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.header__dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.2s ease;
}

.header__dropdown-item:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 24px;
}

.header__promptcontainer {
    margin-bottom: 30px;
}

.header__promptbox {
    width: 100%;
    padding: 20px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
}

.header__promptbox:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.header__cta {
    padding: 10px 20px;
    background-color: var(--primary);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.header__cta:hover {
    background-color: var(--primary-dark);
}

.header__mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

.header__mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 999;
}

.header__mobile-menu--active {
    display: block;
}

.header__mobile-nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    font-weight: 500;
}

.header__mobile-cta {
    display: block;
    margin-top: 15px;
    padding: 7px;
    background-color: var(--primary);
    color: white;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f5fff9 0%, #f0fff2 100%);
}

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

.hero__title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.hero__title-highlight {
    color: var(--primary);
}

.hero__subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: center;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray);
}

.hero__image {
    text-align: center;
}

.hero__image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Pricing Section - Subscriptions */
.pricing__toggle {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing__toggle-buttons {
    display: inline-flex;
    background: var(--light);
    border-radius: 10px;
    padding: 4px;
    gap: 4px;
}

.pricing__toggle-btn {
    padding: 10px 30px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark);
}

.pricing__toggle-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.pricing__card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing__card--popular {
    border-color: var(--primary);
}

.pricing__popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing__plan {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.pricing__price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.pricing__period {
    color: var(--gray);
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing__description {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    min-height: 40px;
}

.pricing__features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.pricing__feature-icon {
    color: var(--secondary);
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing__feature-text {
    color: var(--gray);
    font-size: 0.9rem;
}

.pricing__button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.pricing__button--default {
    background-color: var(--light);
    color: var(--dark);
}

.pricing__button--default:hover {
    background-color: var(--light-gray);
}

.pricing__button--primary {
    background-color: var(--primary);
    color: white;
}

.pricing__button--primary:hover {
    background-color: var(--primary-dark);
}

/* Process Section */
.process {
    background-color: var(--light);
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.process__item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.process__icon {
    width: 70px;
    height: 70px;
    background: rgba(36, 246, 116, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.process__icon-svg {
    font-size: 1.8rem;
    color: var(--primary);
}

.process__item-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.process__item-text {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.process__arrow {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero__content {
        text-align: center;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

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

    .process__arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .header__mobile-toggle {
        display: block;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .footer__container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer__text {
        margin: 0;
    }

    .cta__contact {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .pricing__grid,
    .credits__grid {
        grid-template-columns: 1fr;
    }
}

/* Solutions Section */
.solutions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.solutions__item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.solutions__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.solutions__item-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.solutions__icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solutions__icon-svg {
    color: var(--secondary);
    font-size: 1rem;
}

.solutions__item-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.solutions__item-text {
    color: var(--gray);
    font-size: 0.95rem;
}
