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

:root {
    --charcoal: #1a1a2e;
    --charcoal-light: #2d2d44;
    --charcoal-mid: #3d3d5c;
    --coral: #E85D4A;
    --coral-light: #ff7a66;
    --coral-dark: #c94a38;
    --coral-pale: #fff0ee;
    --white: #ffffff;
    --off-white: #f8f7f5;
    --gray-100: #f0efed;
    --gray-200: #e2e0dc;
    --gray-400: #9e9b95;
    --gray-600: #6b6860;
    --gray-800: #3a3834;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(26,26,46,0.08);
    --shadow-md: 0 4px 20px rgba(26,26,46,0.12);
    --shadow-lg: 0 8px 40px rgba(26,26,46,0.16);
    --shadow-xl: 0 16px 60px rgba(26,26,46,0.20);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--coral);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
    text-decoration: none;
}
.skip-link:focus {
    top: 16px;
}

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

/* ─── HEADER ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26,26,46,0.06);
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--charcoal);
}
.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--coral);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    border-radius: var(--radius-sm);
    letter-spacing: -0.5px;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.logo-line-1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--charcoal);
}
.logo-line-2 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    color: var(--gray-600);
    letter-spacing: 0.02em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
.nav-link {
    padding: 8px 16px;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-link:hover {
    color: var(--charcoal);
    background: var(--gray-100);
}
.nav-cta {
    margin-left: 8px;
    padding: 10px 20px;
    background: var(--coral);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-cta:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232,93,74,0.4);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
}
.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }
.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 24px 24px;
        gap: 4px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-link { padding: 12px 16px; font-size: 16px; }
    .nav-cta {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
    }
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}
.btn-primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,93,74,0.4);
}
.btn-secondary {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--gray-200);
}
.btn-secondary:hover {
    border-color: var(--coral);
    color: var(--coral);
    transform: translateY(-2px);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── SECTION COMMON ─── */
.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    background: var(--coral-pale);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.section-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 560px;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-desc {
    margin: 0 auto;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--charcoal);
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}
.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--coral);
    top: -200px;
    right: -100px;
    opacity: 0.15;
}
.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--coral-light);
    bottom: -100px;
    left: -100px;
    opacity: 0.1;
}
.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--coral);
    top: 50%;
    left: 40%;
    opacity: 0.08;
}
.shape-4 {
    width: 300px;
    height: 300px;
    background: #4a90d9;
    bottom: 10%;
    right: 20%;
    opacity: 0.06;
}
.shape-5 {
    width: 150px;
    height: 150px;
    background: var(--coral-light);
    top: 20%;
    left: 10%;
    opacity: 0.1;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,93,74,0.15);
    border: 1px solid rgba(232,93,74,0.3);
    color: var(--coral-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.hero-headline .highlight {
    color: var(--coral);
}
.hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin-bottom: 36px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.stat-card {
    position: relative;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    overflow: hidden;
}
.stat-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(232,93,74,0.4);
    transform: translateY(-4px);
}
.stat-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
}
.stat-card--1 .stat-card-accent { background: var(--coral); }
.stat-card--2 .stat-card-accent { background: #4a90d9; }
.stat-card--3 .stat-card-accent { background: #34c759; }
.stat-card--4 .stat-card-accent { background: #ff9f0a; }
.stat-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 8px;
}
.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 6px;
}
.stat-unit {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; gap: 48px; }
    .hero-stats { max-width: 480px; }
}
@media (max-width: 480px) {
    .hero { padding: 100px 0 60px; }
    .hero-stats { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ─── ABOUT ─── */
.about {
    padding: 120px 0;
    background: var(--white);
}
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}
.about-pattern {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, var(--coral) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.3;
    z-index: -1;
}
.about-content .section-desc {
    margin-bottom: 32px;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}
.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--coral-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
}
.about-feature strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
}
.about-feature span {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .about-container { grid-template-columns: 1fr; gap: 48px; }
    .about { padding: 80px 0; }
}

/* ─── SERVICES ─── */
.services {
    padding: 120px 0;
    background: var(--off-white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    width: 64px;
    height: 64px;
    background: var(--coral-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin-bottom: 24px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--coral);
    color: var(--white);
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .services { padding: 80px 0; }
}

/* ─── COMMUNITY ─── */
.community {
    padding: 120px 0;
    background: var(--white);
}
.community-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.community-content .section-desc {
    margin-bottom: 48px;
}
.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.community-item {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.community-item:hover {
    border-color: var(--coral);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.community-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--coral);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 8px;
}
.community-item h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.community-item p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--gray-600);
}
.community-visual {
    position: relative;
    min-height: 560px;
}
.community-img {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.community-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.community-img--1 {
    top: 0;
    left: 0;
    width: 260px;
    height: 320px;
    z-index: 2;
}
.community-img--2 {
    bottom: 0;
    right: 0;
    width: 240px;
    height: 280px;
    z-index: 1;
}
.community-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--coral);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

@media (max-width: 900px) {
    .community-container { grid-template-columns: 1fr; gap: 48px; }
    .community-visual { min-height: 400px; }
    .community { padding: 80px 0; }
}
@media (max-width: 480px) {
    .community-grid { grid-template-columns: 1fr; }
    .community-img--1 { width: 200px; height: 250px; }
    .community-img--2 { width: 180px; height: 210px; }
}

/* ─── CTA ─── */
.cta {
    padding: 120px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}
.cta-container {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-shape-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--coral);
    border-radius: 50%;
    top: -250px;
    left: -150px;
    opacity: 0.08;
}
.cta-shape-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--coral-light);
    border-radius: 50%;
    bottom: -150px;
    right: -50px;
    opacity: 0.06;
}
.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.cta-text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin: 0 auto 40px;
}
.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ─── CONTACT ─── */
.contact {
    padding: 120px 0;
    background: var(--off-white);
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info .section-desc {
    margin-bottom: 40px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--coral-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
}
.contact-detail strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
}
.contact-detail span,
.contact-detail a {
    font-size: 15px;
    color: var(--gray-600);
    text-decoration: none;
    line-height: 1.6;
}
.contact-detail a:hover {
    color: var(--coral);
}
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}
.form-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 32px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-800);
    background: var(--off-white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(232,93,74,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    border-radius: var(--radius-sm);
    color: #2e7d32;
    font-size: 14px;
}
.form-success svg {
    flex-shrink: 0;
    color: #2e7d32;
}

@media (max-width: 900px) {
    .contact-container { grid-template-columns: 1fr; gap: 48px; }
    .contact { padding: 80px 0; }
    .contact-form-wrapper { padding: 32px 24px; }
}

/* ─── FOOTER ─── */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.6);
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding: 80px 0 48px;
}
.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}
.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links strong,
.footer-contact strong {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.footer-links a,
.footer-contact a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--coral-light);
}
.footer-contact p {
    font-size: 14px;
    line-height: 1.7;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

@media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 32px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}
</style>
