/* U-Grow Shared 3D Animations & Base Styles */
:root {
    --slate: #104068;
    --amber: #FDB913;
    --amber-light: #FFcc4d;
    --amber-pale: #fff8e6;
    --white: #fff;
    --off: #f8f7f5;
    --text: #1a2533;
    --muted: #6b7f94;
    --border: #e4e8ee
}

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

html,
body {
    max-width: 100%;
    overflow-x: hidden
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text)
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(228, 232, 238, .7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 80px;
    transition: box-shadow .3s, height .3s cubic-bezier(.23, 1, .32, 1)
}

nav.scrolled {
    height: 66px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .09)
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0
}

.nav-logo-img {
    height: clamp(60px, 10vw, 80px);
    width: auto;
    object-fit: contain;
    transition: height .3s ease;
    display: block
}

nav.scrolled .nav-logo-img {
    height: clamp(40px, 6vw, 60px)
}

.nav-links {
    display: flex;
    gap: 34px;
    list-style: none
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color .2s;
    position: relative
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
    transition: width .25s
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--slate)
}

.nav-cta {
    background: var(--slate);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid var(--slate);
    transition: all .25s
}

.nav-cta:hover {
    background: var(--amber);
    border-color: var(--amber);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 20px rgba(232, 136, 26, .32)
}

/* PAGE HERO */
.page-hero {
    background: var(--slate);
    padding: 140px 5% 80px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.ph-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025)1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025)1px, transparent 1px);
    background-size: 64px 64px
}

.ph-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 55% at 50% 100%, rgba(253, 185, 19, .16) 0%, transparent 70%)
}

.ph-content {
    position: relative;
    z-index: 2
}

.bc {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 16px
}

.bc a {
    color: var(--amber);
    text-decoration: none
}

.page-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 5vw, 60px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -1px;
    animation: phUp .8s ease both
}

.page-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, .54);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
    animation: phUp .8s .12s ease both
}

@keyframes phUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.23, 1, .32, 1)
}

.reveal.in {
    opacity: 1;
    transform: translateY(0)
}

.rl {
    opacity: 0;
    transform: translateX(-52px) rotateY(10deg);
    transition: opacity .7s ease, transform .7s cubic-bezier(.23, 1, .32, 1)
}

.rl.in {
    opacity: 1;
    transform: translateX(0) rotateY(0)
}

.rr {
    opacity: 0;
    transform: translateX(52px) rotateY(-10deg);
    transition: opacity .7s ease, transform .7s cubic-bezier(.23, 1, .32, 1)
}

.rr.in {
    opacity: 1;
    transform: translateX(0) rotateY(0)
}

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.d4 {
    transition-delay: .4s
}

.d5 {
    transition-delay: .5s
}

.d6 {
    transition-delay: .6s
}

/* TYPOGRAPHY */
.lbl {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
    display: block
}

.ttl {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800;
    color: var(--slate);
    line-height: 1.08;
    letter-spacing: -1px
}

.ttl span {
    color: var(--amber)
}

.sub {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    margin-top: 14px;
    max-width: 540px
}

/* BUTTONS */
.btn-amber {
    background: var(--amber);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 9px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all .25s;
    display: inline-block
}

.btn-amber:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 36px rgba(232, 136, 26, .4)
}

.btn-white {
    background: var(--white);
    color: var(--amber);
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all .28s cubic-bezier(.23, 1, .32, 1)
}

.btn-white:hover {
    background: var(--slate);
    color: var(--white);
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22)
}

.btn-slate {
    background: var(--slate);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 9px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all .25s;
    display: inline-block;
    border: 2px solid var(--slate)
}

.btn-slate:hover {
    background: transparent;
    color: var(--slate);
    transform: translateY(-2px)
}

/* CTA STRIP */
.cta-strip {
    background: var(--white);
    padding: 96px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(16, 64, 104, 0.04)
}

.cta-strip::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(16, 64, 104, 0.03)
}

.cta-strip h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--slate);
    letter-spacing: -.5px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1
}

.cta-strip p {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 40px;
    position: relative;
    z-index: 1
}

/* FOOTER */
/* FOOTER */
footer {
    background: var(--slate);
    color: rgba(255, 255, 255, .6);
    padding: 70px 3% 15px;
    position: relative;
    overflow: hidden
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--amber), transparent);
    opacity: .6
}

.fg {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 64px;
    max-width: 1180px;
    margin: 0 auto 50px
}

.footer-brand {
    margin-bottom: 24px
}

.footer-logo {
    height: auto;
    width: 100%;
    max-width: 180px;
    max-height: 120px;
    object-fit: contain;
    display: block;
    transition: transform .3s ease
}

.footer-logo:hover {
    transform: scale(1.05)
}

.fd {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .55);
    max-width: 320px
}

.fc2 h4 {
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    display: inline-block
}

.fc2 h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--amber)
}

.fc2 a {
    display: block;
    color: rgba(255, 255, 255, .45);
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 16px;
    transition: all .3s cubic-bezier(.23, 1, .32, 1);
    width: fit-content
}

.fc2 a:hover {
    color: var(--amber);
    transform: translateX(6px)
}

.fc2 .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
    text-decoration: none;
    transition: color .3s
}

.fc2 .contact-item:hover {
    color: var(--white)
}

.fc2 .contact-icon {
    font-size: 18px;
    color: var(--amber);
    flex-shrink: 0
}

.fbot {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
    max-width: 1280px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px
}

.sb {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    font-size: 14px;
    transition: all .4s cubic-bezier(.23, 1, .32, 1);
    margin-left: 10px
}

.sb:hover {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--slate);
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(253, 185, 19, .2)
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--slate);
    transition: .3s cubic-bezier(.23, 1, .32, 1);
    transform-origin: left
}

/* 3D TILT EFFECT */
.tilt3d {
    transition: transform .15s ease, box-shadow .15s ease;
    transform-style: preserve-3d
}

@media(max-width:960px) {
    .fg {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 90px 30px 30px;
        gap: 24px;
        transition: right .4s cubic-bezier(.23, 1, .32, 1);
        box-shadow: -5px 0 20px rgba(0, 0, 0, .05);
        display: flex;
        z-index: 1000
    }

    .nav-links.open {
        right: 0
    }

    .nav-links a {
        font-size: 20px;
        color: var(--slate)
    }

    .nav-cta {
        display: none
    }

    .mobile-menu-btn {
        display: flex
    }

    .mobile-menu-btn.open span:nth-child(1) {
        transform: rotate(45deg);
        width: 24px;
        background: var(--amber)
    }

    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0
    }

    .mobile-menu-btn.open span:nth-child(3) {
        transform: rotate(-45deg);
        width: 24px;
        background: var(--amber)
    }

    /* Fix hover dependency on mobile */
    .fci {
        transition: none !important;
        transform: none !important
    }

    .fc:hover .fci {
        transform: none !important
    }

    .ff {
        position: relative;
        height: auto;
        border-radius: 16px 16px 0 0;
        border-bottom: none
    }

    .fb {
        position: relative;
        transform: none;
        background: var(--slate);
        border-radius: 0 0 16px 16px;
        padding: 24px;
        height: auto
    }

    .fb ul {
        margin-bottom: 16px
    }

    .hint {
        display: none
    }

    .fc {
        height: auto;
        margin-bottom: 24px
    }
}

@media(max-width:600px) {
    .fg {
        grid-template-columns: 1fr;
        gap: 32px
    }
}