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

:root {
    --bg-primary: #1A1A18;
    --bg-secondary: #1a1a1a;
    --text-primary: #F1F0EE;;
    --text-secondary: #b0b0b0;
    --accent: #ff8c42;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 1100px;
    margin: 0 auto;
}

.link {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Header */
.header {
    padding: 2rem 4rem 0 4rem;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 100;
}

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

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-brackets {
    font-size: 5rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    display: inline-block;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: -0.7rem;
    flex: 1;
}

.tagline {
    font-size: 0.875rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-left: auto;
	margin-bottom: -1rem;
}

/* Main Container */
.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
    flex: 1;
    padding: 0 4rem;
}

/* Hero Section */
.hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.typing-container {
    margin-bottom: 3rem;
    width: 100%;
    padding: 2rem 3rem;
	height: 250px;
	overflow-y: hidden;
	display: flex;
	align-items: flex-end;
}

.typing-text {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.4;
    position: relative;
    text-align: left;
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
    margin-left: 0.25rem;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Inquiry Form */
.inquiry-form {
    width: 100%;
    max-width: 600px;
    display: flex;
    gap: 1rem;
}

.inquiry-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.inquiry-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 140, 66, 0.05);
    box-shadow: 0 0 20px rgba(255, 140, 66, 0.2);
}

.inquiry-input::placeholder {
    color: var(--text-secondary);
}

.submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent), #d9672b);
    border: none;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn:disabled:hover {
    transform: none;
}

/* AI Response */
.ai-response {
    width: 100%;
    max-width: 600px;
    margin-top: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    animation: slideIn 0.3s ease;
}

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

.response-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--glass-border);
}

.response-header strong {
    color: var(--accent);
    font-size: 1rem;
}

.close-response {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.close-response:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.response-content {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Content Panel */
.content-panel {
    width: 100%;
    position: relative;
    margin-bottom: 3rem;
    padding: 0 4rem;
}

.panel-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: all 0.3s ease;
}

.panel-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 140, 66, 0.4);
}

.panel-headline {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent);
    margin: 0;
    white-space: nowrap;
}

.panel-text {
    flex: 1;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.panel-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 8px;
    background: rgba(255, 140, 66, 0.1);
}

.panel-link:hover {
    background: rgba(255, 140, 66, 0.2);
    border-color: var(--accent);
    transform: translateX(5px);
}

/* Testimonials */
.testimonials {
    margin: 0 0 4rem 0;
    padding: 0 4rem;
}

.testimonial-container {
    position: relative;
    min-height: 200px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    padding: 0;
    overflow: visible;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
	height: 300px;
}

.testimonial.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.testimonial blockquote {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: normal;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 3rem 4rem;
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-section a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Tablet Styles (768px - 1023px) */
@media (max-width: 1023px) {
    .header {
        padding: 1.5rem 2rem 0 2rem;
    }

    .logo h1 {
        font-size: 1.75rem;
    }

    .main-container {
        padding: 1.5rem 0;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 2rem;
        padding: 0 2rem;
    }

    .content-panel {
        margin-bottom: 2rem;
        padding: 0 2rem;
    }

    .panel-content {
        padding: 1.5rem 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .panel-headline {
        font-size: 1.25rem;
    }

    .panel-text {
        font-size: 0.95rem;
    }

    .panel-link {
        align-self: flex-end;
    }

    .testimonials {
        padding: 0 2rem;
    }

    .typing-container {
        padding: 1.5rem 2rem;
		height: 220px;
    }

    .typing-text {
        font-size: 2.25rem;
    }

    .testimonial-container {
        padding: 0;
    }

    .testimonial {
        padding: 2rem;
		height: 260px;
    }

    .testimonial blockquote {
        font-size: 1.125rem;
    }

    .footer {
        padding: 2rem;
    }

    .footer-content {
        flex-direction: column;
    }
}

/* Mobile Styles (767px and below) */
@media (max-width: 767px) {
    .header {
        padding: 1rem 1.5rem 0 1.5rem;
    }

    .logo h1 {
        font-size: 1.5rem;
	    margin-bottom: -0.4rem;
    }

    .logo-brackets {
        font-size: 3rem;
    }

    .tagline {
        display: none;
    }

    .main-container {
        padding: 1rem 0;
    }

    .content-wrapper {
        gap: 1.5rem;
        margin-bottom: 3rem;
        padding: 0 1.5rem;
    }

    .content-panel {
        margin-bottom: 2rem;
        padding: 0 1.5rem;
    }

    .panel-content {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .panel-headline {
        font-size: 1.125rem;
    }

    .panel-text {
        font-size: 0.875rem;
    }

    .panel-link {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        align-self: flex-end;
    }

    .testimonials {
        padding: 0 1.5rem;
    }

    .hero-section {
        min-height: 300px;
    }

    .typing-container {
        margin-bottom: 2rem;
        padding: 1.25rem 1.5rem;
		height: 210px;
    }

    .typing-text {
        font-size: 1.75rem;
    }

    .inquiry-form {
        flex-direction: column;
    }

    .inquiry-input,
    .submit-btn {
        width: 100%;
    }

    .service-tag {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .testimonials {
        margin: 0 0 2rem 0;
    }

    .testimonial-container {
        padding: 0;
    }

    .testimonial {
        padding: 1.5rem;
		height: 360px;
    }

    .testimonial blockquote {
        font-size: 1rem;
        line-height: 1.6;
    }

    .testimonial cite {
        font-size: 0.875rem;
    }

    .footer {
        padding: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .footer-section p {
        font-size: 0.875rem;
    }
}

/* Article Styles
============================================= */

/* Article Container */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 4rem 4rem 4rem;
}

/* Article Header */
.article-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.article-date {
    color: var(--accent);
}

.article-author {
    color: var(--text-secondary);
}

.article-title {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.article-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Article Content */
.article-content {
    line-height: 1.8;
    color: var(--text-primary);
}

.article-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 300;
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.article-content h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.article-content strong {
    font-weight: 600;
    color: var(--text-primary);
}

.article-content em {
    font-style: italic;
    color: var(--accent);
}

/* Lists */
.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
}

.article-content ul li {
    list-style-type: disc;
}

.article-content ol li {
    list-style-type: decimal;
}

/* Pull Quotes */
.article-pullquote {
    margin: 3rem 0;
    padding: 2rem 3rem;
    background: var(--glass-bg);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
}

.article-pullquote p {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.article-pullquote cite {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: normal;
    font-weight: 400;
}

/* Statistics Box */
.article-stat-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Highlight Box */
.article-highlight-box {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 12px;
}

.article-highlight-box h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--accent);
}

.article-highlight-box p {
    margin-bottom: 0;
}

/* Conclusion Box */
.article-conclusion {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.article-conclusion h3 {
    margin-top: 0;
    color: var(--accent);
}

/* Article Footer */
.article-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 140, 66, 0.2);
    border-color: var(--accent);
}

/* Article CTA */
.article-cta {
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.article-cta h3 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.article-cta p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent), #d9672b);
    border: none;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

/* Responsive Article Styles - Tablet */
@media (max-width: 1023px) {
    .article-container {
        padding: 0 2rem 3rem 2rem;
    }

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

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

    .article-content h2 {
        font-size: 1.75rem;
    }

    .article-content h3 {
        font-size: 1.375rem;
    }

    .article-pullquote {
        padding: 1.5rem 2rem;
    }

    .article-pullquote p {
        font-size: 1.25rem;
    }

    .article-stat-box {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Responsive Article Styles - Mobile */
@media (max-width: 767px) {
    .article-container {
        padding: 0 1.5rem 2rem 1.5rem;
    }

    .article-header {
        margin-bottom: 2rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .article-subtitle {
        font-size: 1rem;
    }

    .article-lead {
        font-size: 1.125rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .article-content h3 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }

    .article-content p {
        font-size: 1rem;
    }

    .article-content li {
        font-size: 1rem;
    }

    .article-pullquote {
        padding: 1.25rem 1.5rem;
        margin: 2rem 0;
    }

    .article-pullquote p {
        font-size: 1.125rem;
    }

    .article-stat-box {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .article-highlight-box,
    .article-conclusion {
        padding: 1.5rem;
    }

    .article-cta {
        padding: 2rem 1.5rem;
    }

    .article-cta h3 {
        font-size: 1.5rem;
    }

    .cta-button {
        display: block;
        width: 100%;
    }
}

/* Legal/Terms Page Styles
============================================= */

/* Legal Container */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 4rem 4rem 4rem;
}

/* Legal Header */
.legal-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--glass-border);
}

.legal-title {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.legal-updated {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.legal-updated em {
    font-style: italic;
    color: var(--text-secondary);
}

/* Legal Content */
.legal-content {
    line-height: 1.8;
    color: var(--text-primary);
}

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.legal-section-title {
    font-size: 1.75rem;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--accent);
    letter-spacing: -0.01em;
}

.legal-section p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section strong {
    font-weight: 600;
    color: var(--accent);
}

.legal-section ul {
    margin-bottom: 1rem;
    padding-left: 0;
    list-style-position: inside;
}

.legal-section li {
    margin-bottom: 0.75rem;
}

/* Legal Footer */
.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.legal-home-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent), #d9672b);
    border: none;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-home-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

/* Responsive Legal Styles - Tablet */
@media (max-width: 1023px) {
    .legal-container {
        padding: 0 2rem 3rem 2rem;
    }

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

    .legal-section {
        padding: 1.5rem;
    }

    .legal-section-title {
        font-size: 1.5rem;
    }
}

/* Responsive Legal Styles - Mobile */
@media (max-width: 767px) {
    .legal-container {
        padding: 0 1.5rem 2rem 1.5rem;
    }

    .legal-header {
        margin-bottom: 2rem;
    }

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

    .legal-updated {
        font-size: 0.875rem;
    }

    .legal-section {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

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

    .legal-section p {
        font-size: 0.9375rem;
    }

    .legal-home-link {
        display: block;
        width: 100%;
    }
}

/* Coming Soon Page Styles
============================================= */

/* Coming Soon Main Container */
.comingsoon-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.comingsoon-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 4rem;
    text-align: center;
}

/* Coming Soon Content */
.comingsoon-content {
    padding: 4rem 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.comingsoon-title {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.comingsoon-chevrons {
    font-size: 4rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    margin: 2rem 0;
}

.comingsoon-message {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
    margin: 0;
}

/* Coming Soon Footer */
.comingsoon-footer {
    text-align: center;
}

.comingsoon-home-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent), #d9672b);
    border: none;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.comingsoon-home-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

/* Responsive Coming Soon Styles - Tablet */
@media (max-width: 1023px) {
    .comingsoon-container {
        padding: 0 2rem;
    }

    .comingsoon-content {
        padding: 3rem 2rem;
    }

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

    .comingsoon-chevrons {
        font-size: 3.5rem;
    }

    .comingsoon-message {
        font-size: 1.125rem;
    }
}

/* Responsive Coming Soon Styles - Mobile */
@media (max-width: 767px) {
    .comingsoon-main {
        min-height: 50vh;
    }

    .comingsoon-container {
        padding: 0 1.5rem;
    }

    .comingsoon-content {
        padding: 2.5rem 1.5rem;
    }

    .comingsoon-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .comingsoon-chevrons {
        font-size: 3rem;
        margin: 1.5rem 0;
    }

    .comingsoon-message {
        font-size: 1rem;
    }

    .comingsoon-home-link {
        display: block;
        width: 100%;
    }
}

/* About Page Styles
============================================= */

/* About Container */
.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 4rem 4rem 4rem;
}

/* About Header */
.about-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--glass-border);
}

.about-title {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

/* About Content */
.about-content {
    line-height: 1.8;
    color: var(--text-primary);
}

.about-intro {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Photo Placeholder */
.about-photo-placeholder {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.photo-box {
    width: 280px;
    height: 280px;
    background: var(--glass-bg);
    border: 2px dashed var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.photo-box:hover {
    border-color: var(--accent);
    background: rgba(255, 140, 66, 0.05);
}

.photo-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.photo-photo {
	border-radius: 16px;
}

.photo-caption {
    text-align: center;
}

.owner-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem !important;
}

.owner-title {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 400;
    margin: 0;
}

/* About Text */
.about-text {
    display: flex;
    align-items: center;
}

.about-lead {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
    color: var(--text-primary);
    margin: 0;
	font-size: 1.375rem !important;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.about-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

/* About Pullquotes */
.about-pullquote {
    margin: 3rem 0;
    padding: 2rem 3rem;
    background: var(--glass-bg);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.about-pullquote p {
    font-size: 1.375rem;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    color: var(--text-primary);
}

/* About Carbon Panel */
.about-carbon-panel {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.carbon-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 3rem;
    line-height: 1;
}

.carbon-badge h3 {
    font-size: 1.75rem;
    font-weight: 500;
    color: #4CAF50;
    margin: 0;
}

.carbon-content p {
    margin-bottom: 1rem;
}

.carbon-certificate {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.certificate-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.certificate-number {
    font-size: 1.5rem;
    font-weight: 500;
    color: #4CAF50;
    margin-bottom: 1rem;
    font-family: monospace;
}

.certificate-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.4);
    border-radius: 8px;
    color: #4CAF50;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.certificate-link:hover {
    background: rgba(76, 175, 80, 0.3);
    border-color: #4CAF50;
    transform: translateX(5px);
}

/* About Closing */
.about-closing {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.about-closing h3 {
    margin-top: 0;
    color: var(--accent);
}

.about-closing p {
    margin-bottom: 0;
}

/* About Footer */
.about-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.about-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent), #d9672b);
    border: none;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

/* Responsive About Styles - Tablet */
@media (max-width: 1023px) {
    .about-container {
        padding: 0 2rem 3rem 2rem;
    }

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

    .about-intro {
        grid-template-columns: 220px 1fr;
        gap: 2rem;
    }

    .photo-box {
        width: 220px;
        height: 220px;
		overflow: hidden;
	}

    .about-lead {
        font-size: 1.25rem;
    }

    .about-content h2 {
        font-size: 1.75rem;
    }

    .about-pullquote {
        padding: 1.5rem 2rem;
    }

    .about-pullquote p {
        font-size: 1.25rem;
    }

    .carbon-badge h3 {
        font-size: 1.5rem;
    }

    .certificate-number {
        font-size: 1.25rem;
    }
}

/* Responsive About Styles - Mobile */
@media (max-width: 767px) {
    .about-container {
        padding: 0 1.5rem 2rem 1.5rem;
    }

    .about-header {
        margin-bottom: 2rem;
    }

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

    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .photo-box {
        width: 100%;
        height: 280px;
        max-width: 280px;
        margin: 0 auto;
    }

    .about-lead {
        font-size: 1.125rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .about-content h3 {
        font-size: 1.25rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .about-pullquote {
        padding: 1.25rem 1.5rem;
        margin: 2rem 0;
    }

    .about-pullquote p {
        font-size: 1.125rem;
    }

    .about-closing {
        padding: 2rem 1.5rem;
    }

    .about-carbon-panel {
        padding: 2rem 1.5rem;
    }

    .carbon-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .badge-icon {
        font-size: 2.5rem;
    }

    .carbon-badge h3 {
        font-size: 1.375rem;
    }

    .carbon-certificate {
        padding: 1.25rem;
    }

    .certificate-number {
        font-size: 1.125rem;
    }

    .certificate-link {
        display: block;
        width: 100%;
        text-align: center;
    }

    .about-cta-button {
        display: block;
        width: 100%;
    }
}