:root {
    --primary: #25189E;
    --secondary: #FF773B;
    --bg-light: #F6F6FA;
    --text-main: #1A1A2E;
    --text-light: #4A4A68;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --max-width: 1440px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Utility Classes */
.text-primary { color: var(--primary); }
.text-accent { color: var(--secondary); }

/* Background Effects */
.bg-effects {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
}

.glow-top-right {
    position: absolute;
    top: -10%; right: -5%;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(255,119,59,0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.glow-center {
    position: absolute;
    top: 20%; left: 20%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(37,24,158,0.03) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.bg-wave {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: auto;
    min-height: 300px;
    z-index: -1;
}

/* Layout Wrapper */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 4rem;
    position: relative;
    z-index: 1;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 1rem;
    margin-bottom: 4rem;
    animation: fadeInDown 1s ease-out;
}

.logo-area {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.logo-img-wrapper img {
    height: 48px;
    width: auto;
}

.logo-subtext {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stay-connected {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--primary);
    background: rgba(37, 24, 158, 0.05);
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6rem;
    position: relative;
}

.hero-text {
    flex: 0 0 55%;
    max-width: 750px;
    animation: fadeInLeft 1s ease-out;
}

.eyebrow {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.headline {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 2rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.supporting-message {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.supporting-message strong {
    color: var(--primary);
    font-weight: 600;
}

.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 150%);
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 50px;
    margin-bottom: 4rem;
    box-shadow: 0 10px 25px rgba(37, 24, 158, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-pill::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50px;
    box-shadow: inset 0 0 0 1px rgba(255, 119, 59, 0.3);
    pointer-events: none;
}

.cta-icon {
    font-size: 1.25rem;
}

/* Concept Grid */
.concept-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.concept-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.icon-wrapper {
    color: var(--primary);
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: rgba(37, 24, 158, 0.05);
    border-radius: 12px;
}

.concept-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.concept-item p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Hero Visual */
.hero-visual {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.visual-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(255,119,59,0.15) 0%, rgba(37,24,158,0.1) 40%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    animation: pulseGlow 4s infinite alternate;
    z-index: 0;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 24px;
    -webkit-mask-image: radial-gradient(circle at center, black 65%, transparent 100%);
    mask-image: radial-gradient(circle at center, black 65%, transparent 100%);
}

/* Bottom Section */
.bottom-section {
    margin-top: auto;
    padding-bottom: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 20px 40px rgba(37, 24, 158, 0.08);
    width: 100%;
    max-width: 1100px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.contact-block {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
}

.contact-icon {
    width: 48px; height: 48px;
    background: rgba(37, 24, 158, 0.05);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-content {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-action {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
}

.contact-action a {
    color: var(--primary);
}

.contact-action a:hover {
    color: var(--secondary);
}

.card-separator {
    width: 1px;
    height: 60px;
    background: rgba(37, 24, 158, 0.1);
}

.quote-block {
    flex: 1.5;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    color: var(--secondary);
    opacity: 0.8;
    margin-top: -10px;
}

.quote-block p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
}

.quote-block strong {
    color: var(--primary);
    font-weight: 700;
}

/* Footer */
.site-footer {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    position: relative;
    z-index: 10;
    color: var(--white);
    margin-top: -2rem; /* Pull up over the background wave */
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.footer-slogan {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulseGlow {
    from { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    to { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Responsive Design */

/* Small Desktop/Laptops */
@media (max-width: 1366px) {
    .headline {
        font-size: 4rem;
    }
    .hero-text {
        flex: 0 0 60%;
    }
}

/* Tablets Landscape & Smaller Desktop */
@media (max-width: 1024px) {
    .page-wrapper {
        padding: 2rem;
    }
    .headline {
        font-size: 3.5rem;
    }
    .concept-grid {
        gap: 1.5rem;
    }
    .info-card {
        padding: 1.5rem 2rem;
        gap: 2rem;
    }
    .quote-block p {
        font-size: 1rem;
    }
}

/* Tablets Portrait */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }
    .hero-text {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .headline {
        font-size: 3rem;
    }
    .supporting-message {
        text-align: center;
    }
    .concept-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 2rem;
        width: 100%;
        text-align: center;
    }
    .concept-item {
        align-items: center;
    }
    .hero-visual {
        flex: 0 0 100%;
        width: 100%;
        max-width: 500px;
        margin-top: 4rem;
    }
    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .contact-block {
        flex-direction: column;
    }
    .card-separator {
        width: 100%;
        height: 1px;
    }
    .quote-block {
        flex-direction: column;
        align-items: center;
    }
    .quote-mark {
        margin-top: 0;
    }
    .bg-wave {
        min-height: 400px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .page-wrapper {
        padding: 1.5rem 1rem;
    }
    .site-header {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .header-actions {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }
    .stay-connected {
        display: inline-block;
        margin-right: 0.25rem;
    }
    .social-icons {
        gap: 0.75rem;
    }
    .headline {
        font-size: 2.5rem;
    }
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .cta-pill {
        width: 100%;
        justify-content: center;
    }
    .info-card {
        padding: 1.5rem;
    }
}
