/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f59e0b;
    --primary-dark: #d97706;
    --secondary-color: #fb923c;
    --accent-color: #f97316;
    --text-dark: #2f343a;
    --text-light: #5f6770;
    --bg-light: #fff8eb;
    --bg-white: #ffffff;
    --border-color: #f0d7a6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.env-indicator {
    position: fixed;
    right: 10px;
    bottom: 10px;
    font-size: 0.72rem;
    color: #9ca3af;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #d1d5db;
    border-radius: 0.35rem;
    padding: 0.2rem 0.45rem;
    z-index: 1100;
    letter-spacing: 0.03em;
}

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

section[id] {
    scroll-margin-top: 130px;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #fcd34d 0%, #fb923c 100%);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo .tagline {
    font-size: 0.9rem;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.existing-customers {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(47, 52, 58, 0.15);
    border-radius: 0.75rem;
    padding: 0.6rem 0.8rem;
}

.existing-customers span {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.customer-links {
    list-style: none;
    display: flex;
    gap: 0.85rem;
}

.customer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.customer-links a:hover {
    text-decoration: underline;
}

.link-icon {
    font-size: 0.95rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fde68a 0%, #fdba74 100%);
    color: var(--text-dark);
    padding: 5rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.65);
    color: var(--text-dark);
    border: 2px solid rgba(47, 52, 58, 0.2);
}

.btn-secondary:hover {
    background-color: white;
    color: var(--text-dark);
}

.btn-order {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.btn-order:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Product Sections */
.products-section {
    padding: 5rem 0;
}

.alt-bg {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Product Cards */
.product-card {
    background: #fffdf8;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.product-card.featured {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), #f97316);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.product-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.product-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-features {
    flex: 1;
    margin-bottom: 1.5rem;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.product-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    color: var(--primary-color);
   /* color: var(--text-light);*/
    font-size: 1.5rem;
}

.hosting-note {
    margin-top: 1.25rem;
    color: var(--text-light);
    text-align: center;
    font-size: 0.95rem;
}

.hosting-order-section {
    margin-top: 2rem;
    background: #fffdf8;
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    padding: 2rem;
}

.hosting-order-section h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.hosting-order-section p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hosting-order-form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
}

.hosting-order-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.hosting-order-form .hosting-product-options {
    display: flex;
    gap: 1rem;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    width: 95%;
    transition: 0.2s;
}

.hosting-order-form .hosting-product-options label {
    display: block;
    padding: 10px;
    border-radius: 6px;
}

.hosting-order-form .hosting-product-options label input[type="radio"] {
    display: none;
}

.hosting-order-form .hosting-product-options label input[type="radio"]:checked + .product-card {
    border-color: var(--primary-color);
}

.hosting-confirmation {
    max-width: 760px;
    margin: 0 auto;
    background: #fffdf8;
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    text-align: center;
}

.hosting-confirmation h1 {
    margin-bottom: 1rem;
}

.hosting-confirmation p {
    margin-bottom: 1rem;
}

.hosting-confirmation.is-success {
    border-color: #7ac94a;
}

.hosting-confirmation.is-error {
    border-color: #ef4444;
}

.order-confirmation-summary {
    margin: 1.25rem auto 0;
    max-width: 520px;
    text-align: left;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
}

.order-confirmation-summary h2 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.order-confirmation-summary ul {
    list-style: none;
}

.order-confirmation-summary li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.order-confirmation-summary li:last-child {
    border-bottom: none;
}

.hosting-links {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hosting-order-page {
    max-width: 880px;
    margin: 0 auto;
    background: #fffdf8;
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    padding: 2rem;
}

.hosting-order-page h1 {
    margin-bottom: 0.75rem;
}

.hosting-order-page p {
    color: var(--text-light);
}

.back-button {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.back-button:hover {
    text-decoration: underline;
}

.domain-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.domain-row input {
    flex: 1;
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.domain-row input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.domain-search-link {
    white-space: nowrap;
}

.field-note {
    display: block;
    margin-top: 0.4rem;
    color: var(--text-light);
}

.domain-type-options {
    display: grid;
    gap: 0.45rem;
}

.domain-type-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.domain-search-form {
    margin: 1rem 0 1.25rem;
}

.domain-result {
    background: #fff4d6;
    border: 1px solid var(--border-color);
    border-radius: 0.6rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.domain-suggestions {
    list-style: none;
    margin-top: 0.8rem;
}

.domain-suggestions li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
}

.domain-suggestions li a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.domain-price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: #ffffff;
    border-radius: 0.6rem;
    overflow: hidden;
}

.domain-price-table th,
.domain-price-table td {
    padding: 0.85rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.domain-price-table th {
    background: #fff4d6;
    color: var(--text-dark);
}

.order-steps {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.order-steps li {
    margin-bottom: 0.7rem;
}

/* Suite Features */
.suite-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.feature-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-box p {
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.contact-card p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-card a {
    color: var(--primary-dark);
    text-decoration: none;
}

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

/* Footer */
footer {
    background-color: #2f343a;
    color: #e5e7eb;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-xl);
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    clear: both;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
    display: block;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
    display: block;
}

/* Success Details Styling */
.success-details {
    padding-top: 0.5rem;
}

.success-details h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #059669;
}

.success-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #065f46;
}

.success-details p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.success-details ol li {
    margin-bottom: 0.5rem;
}

.status-link-section {
    text-align: center;
}

.status-link-section a {
    color: white;
    background-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.4rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.status-link-section a:hover {
    background-color: var(--primary-dark);
}

.next-steps {
    margin-top: 1.5rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        justify-content: center;
        text-align: center;
    }

    .logo img {
        height: 48px;
    }

    .header-right {
        width: 100%;
        justify-content: center;
    }

    .existing-customers {
        width: 100%;
    }

    .customer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}

/* Cookie Banner */
#cookieBanner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 1.5rem;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-icon {
    font-size: 2rem;
}

.cookie-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.cookie-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: var(--text-dark);
}

.cookie-btn-accept:hover {
    background: var(--primary-dark);
}

.cookie-btn-necessary {
    background: var(--border-color);
    color: var(--text-dark);
}

.cookie-btn-necessary:hover {
    background: #d1d5db;
}

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

.cookie-btn-settings:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

#cookieSettings {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
}

.cookie-option-info h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-dark);
    font-size: 1rem;
}

.cookie-option-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.cookie-toggle label {
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
}

.cookie-save-btn {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    #cookieBanner {
        padding: 1rem;
    }
    
    .cookie-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
