@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #0d2e2a;
}

/* HEADER */
header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 60px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(44, 165, 141, 0.12);
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-svg {
    width: 200px;
    height: auto;
}

.logo-svg-inverted {
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1) opacity(0.8);
}

.logo-text p:first-child {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0d4a45;
    letter-spacing: 3px;
    line-height: 1;
}

.logo-text p:last-child {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: #2ca58d;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* HERO */
.section-hero {
    padding: 80px 0;
    position: relative;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.container {
    max-width: 1260px;
    z-index: 1;
}

.section-hero-badge {
    background: rgba(44, 165, 141, 0.08);
    color: #1a7a6a;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(44, 165, 141, 0.25);
    margin-bottom: 36px;
    display: inline-block;
}

.section-hero h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
    color: #0a2e2a;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 28px;
}

.section-hero .gradient-text {
    background: linear-gradient(135deg, #2ca58d 0%, #0d4a45 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-hero p {
    font-size: 1.1rem;
    color: #4a7a72;
    max-width: 560px;
    line-height: 1.8;
    font-weight: 400;
    margin: 0 auto;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0d4a45;
    color: #fff;
    margin-top: 28px;
    padding: 17px 36px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(13, 74, 69, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-primary:hover {
    background: #0a3a36;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(13, 74, 69, 0.3);
}

.btn-arrow {
    font-size: 1rem;
    transition: transform 0.2s;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.section-hero .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 42px;
}

.card {
    background: #fff;
    border: 1px solid rgba(44, 165, 141, 0.15);
    border-radius: 20px;
    padding: 36px 30px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    text-align: left;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(13, 74, 69, 0.1);
    border-color: rgba(44, 165, 141, 0.4);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e6f7f3, #c8f0e8);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 22px;
}

.card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a2e2a;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.card p {
    font-size: 0.88rem;
    color: #4a7a72;
    line-height: 1.7;
}

/* Mesh gradient blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    pointer-events: none;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: #b2f0e0;
    top: -120px;
    right: 0px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #c8f5eb;
    bottom: -100px;
    left: -60px;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #7fe8cc;
    top: 40%;
    left: 55%;
}

/* Grid overlay */
.section-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(44, 165, 141, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(44, 165, 141, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* FOOTER */
footer {
    background: #0a2e2a;
    padding: 80px 0px;
    text-align: center;
    position: relative;
}

.footer-divider {
    width: 1px;
    height: 40px;
    background: rgba(44, 165, 141, 0.3);
    margin: 10px auto 10px;
}

.footer-contact-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #4a8a80;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

footer a {
    color: #4fd1b8;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.2s;
}

footer a:hover {
    color: #7febd8;
}

.footer-copy {
    font-size: 1.1rem;
    color: #4a8a80;;
    margin-top: 48px;
}

@media (max-width: 748px) {
    .section-hero{overflow-x: hidden; padding: 60px 0px;}
    .section-hero .cards {grid-template-columns: repeat(1, 1fr);}
    .container{padding: 0px 15px;}
    .blob-2 {bottom: 0px;}
    footer{padding: 60px 15px;}
  }