* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: #f8fafc;
    color: #111827;
    line-height: 1.5;
}

.site-header {
    background: rgba(255,255,255,0);
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 118, 110, 0.2), #f8fafc);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 8px 16px;
    border-radius: 9999px;
    margin-bottom: 24px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: #0f766e;
}

.hero-badge span {
    font-size: 14px;
    color: #374151;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 24px;
    color: #111827;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
    line-height: 1.1;
}

.hero-title .highlight {
    color: #0f766e;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 40px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background-color: #0f766e;
    color: white;
    padding: 20px 40px;
    border-radius: 9999px;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0d5f57;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.section {
    padding: 96px 24px;
}

.section-white {
    background-color: white;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #111827;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

.icon-red {
    background-color: #fee2e2;
}

.icon-red svg {
    color: #dc2626;
}

.icon-teal {
    background-color: #0f766e;
}

.icon-teal svg {
    color: white;
}

.icon-green {
    background-color: #dcfce7;
}

.icon-green svg {
    color: #16a34a;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #111827;
    font-weight: 600;
}

.card-list {
    list-style: none;
}

.card-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    color: #4b5563;
}

.card-border {
    border: 2px solid #0f766e;
}

/* Pricing Cards */
.pricing-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.pricing-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card-popular {
    background: #0f766e;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: scale(1);
}

@media (min-width: 768px) {
    .pricing-card-popular {
        transform: scale(1.05);
    }
}

.pricing-card-popular:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #111827;
    padding: 8px 24px;
    border-radius: 9999px;
    font-size: 14px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-name {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
}

.pricing-period {
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-dark {
    width: 100%;
    background: #1f2937;
    color: white;
    padding: 16px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-dark:hover {
    background: #111827;
}

.btn-white {
    width: 100%;
    background: white;
    color: #0f766e;
    padding: 16px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.btn-white:hover {
    background: #f3f4f6;
}

.text-white {
    color: white;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-gray-700 {
    color: #374151;
}

/* CTA Section */
.cta-section {
    padding: 96px 24px;
    background: linear-gradient(to bottom right, #0f766e, #0d5f57);
}

.cta-container {
    max-width: 768px;
    margin: 0 auto;
}

.cta-header {
    text-align: center;
    margin-bottom: 48px;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: white;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    color: #374151;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    transition: all 0.3s;
    font-family: inherit;
    font-size: 1rem;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.form-textarea {
    resize: none;
}

.success-message {
    text-align: center;
    padding: 48px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: #16a34a;
}

.success-title {
    font-size: 1.875rem;
    margin-bottom: 12px;
    color: #111827;
    font-weight: 700;
}

.success-text {
    font-size: 1.25rem;
    color: #4b5563;
}

.video-card video {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    cursor: pointer;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 48px 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-text {
    color: #9ca3af;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    cursor: pointer;
}

.footer-link:hover {
    text-decoration: none;
    color: #595858;
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .cta-title {
        font-size: 1.875rem;
    }

    .form-card {
        padding: 32px 24px;
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

/* Modal Content */
.modal-content {
    background: white;
    padding: 32px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80%;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-align: left;
}

.modal-content h2 {
    margin-bottom: 16px;
}

.modal-content button {
    margin-top: 24px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background-color: #0f766e;
    color: white;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #0d5f57;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111827;
    color: white;
    padding: 16px 24px;
    display: none; /* initially hidden */
    justify-content: space-between;
    align-items: center;
    z-index: 3000;
    flex-wrap: wrap;
    box-shadow: 0 -5px 10px rgba(0,0,0,0.2);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-banner button {
    background: #0f766e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.cookie-banner button:hover {
    background: #0d5f57;
}

.cookie-banner a {
    color: inherit;
    text-decoration: underline;
    cursor: pointer;

}
