/* ============================================
    ENHANCE CV INSPIRED COLOR PALETTE
    Teal / Aqua / Dark Navy / Warm White
============================================ */
:root {
    --teal: #00b8a9;
    --teal-light: #00d4c4;
    --teal-dark: #007f76;
    --navy: #0d1b2a;
    --navy-mid: #1a2e42;
    --navy-soft: #243b55;
    --aqua: #64dfdf;
    --mint: #b2f5ea;
    --white: #ffffff;
    --off-white: #f7fffe;
    --gray-100: #f2f4f5;
    --gray-300: #c8d0d5;
    --gray-500: #8a9baa;
    --gray-700: #4a5568;
    --accent: #ff6b6b;
    --gold: #f6c90e;
    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "DM Sans", sans-serif;
    --font-mono: "Space Mono", monospace;
    --radius: 12px;
    --radius-lg: 24px;
    --shadow: 0 4px 24px rgba(0, 184, 169, 0.12);
    --shadow-lg: 0 16px 48px rgba(13, 27, 42, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

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

/* ============================================
    GLOBAL UTILITIES
============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
}

.section-title span {
    color: var(--teal);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--teal);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 184, 169, 0.35);
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 184, 169, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}

.btn-outline:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--navy);
    box-shadow: var(--shadow);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 16px;
    background: var(--teal);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 184, 169, 0.35);
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--mint);
    color: var(--teal-dark);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-mono);
    letter-spacing: 1px;
}

/* ============================================
    HEADER / NAVBAR — Glint inspired
    Clean, glassmorphism sticky nav
============================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 184, 169, 0.1);
    transition: all 0.3s;
}

#header.scrolled {
    box-shadow: 0 4px 20px rgba(13, 27, 42, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--teal), var(--aqua));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    color: white;
    font-size: 18px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
}

.logo-text span {
    color: var(--teal);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 100%;
    height: 2px;
    background: var(--teal);
    transition: right 0.3s;
}

.nav-links a:hover {
    color: var(--teal);
}

.nav-links a:hover::after {
    right: 0;
}

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s;
}

/* ============================================
    Page-Hero — Digitek inspired
    4-column footer with links
  ============================================ */

.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 184, 169, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 184, 169, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    pointer-events: none;
}

.b1 {
    width: 500px;
    height: 500px;
    background: var(--teal);
    top: -200px;
    right: -100px;
}

.b2 {
    width: 300px;
    height: 300px;
    background: var(--aqua);
    bottom: -100px;
    left: 100px;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.page-hero h1 span {
    color: var(--teal-light);
}

.page-hero p {
    color: var(--gray-300);
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
    position: relative;
    z-index: 2;
}

.page-hero .section-label {
    position: relative;
    z-index: 2;
}

/* ============================================
     SCROLL REVEAL ANIMATIONS
  ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================
     PRICING — GenAI inspired
     3-tier pricing cards
  ============================================ */
#pricing {
    padding: 60px 0 100px;
    background: var(--off-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 2px solid var(--gray-100);
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    background: linear-gradient(145deg, var(--navy), var(--navy-mid));
    border-color: var(--teal);
    transform: scale(1.04);
    box-shadow: 0 20px 60px rgba(13, 27, 42, 0.25);
}

.pricing-card:hover:not(.featured) {
    border-color: var(--teal);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: white;
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-mono);
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-plan-name {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
}

.pricing-card.featured .pricing-plan-name {
    color: var(--teal-light);
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-card.featured .pricing-price {
    color: white;
}

.pricing-price-currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
}

.pricing-period {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.pricing-card.featured .pricing-period {
    color: var(--gray-300);
}

.pricing-desc {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.65;
    padding: 16px;
    background: var(--off-white);
    border-radius: var(--radius);
    border-left: 3px solid var(--teal);
}

.pricing-card.featured .pricing-desc {
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray-300);
    border-left-color: var(--teal-light);
}

.pricing-divider {
    height: 1px;
    background: var(--gray-100);
    margin: 20px 0;
}

.pricing-card.featured .pricing-divider {
    background: rgba(255, 255, 255, 0.1);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
}

.pricing-card.featured .pricing-features li {
    color: var(--gray-300);
}

.pricing-check {
    width: 20px;
    height: 20px;
    background: var(--mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 10px;
    color: var(--teal-dark);
    font-weight: 700;
    margin-top: 1px;
}

.pricing-card.featured .pricing-check {
    background: rgba(0, 184, 169, 0.2);
    color: var(--teal-light);
}

.pricing-cross {
    width: 20px;
    height: 20px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 10px;
    color: var(--gray-500);
    margin-top: 1px;
}

.btn-pricing-dark {
    background: var(--navy);
    color: white;
    border: 2px solid var(--navy);
}

.btn-pricing-dark:hover {
    background: var(--teal);
    border-color: var(--teal);
    transform: translateY(-2px);
}

.btn-pricing-featured {
    background: var(--teal);
    color: white;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 184, 169, 0.35);
}

.btn-pricing-featured:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
}

.pricing-guarantee {
    text-align: center;
    margin-top: 14px;
    font-size: 12px;
    color: var(--gray-500);
}

.pricing-card.featured .pricing-guarantee {
    color: var(--gray-500);
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(255, 255, 255, 0.1),
        transparent 60%
    );
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: white;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.cta-banner.btn-white {
    background: white;
    color: var(--teal-dark);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.cta-banner .btn-white:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
     FOOTER — Digitek inspired
     4-column footer with links
  ============================================ */
#footer {
    background: var(--navy);
    padding: 80px 0 0;
    color: var(--gray-300);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand .logo-text {
    color: white;
}

.footer-tagline {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-social:hover {
    background: var(--teal);
    border-color: var(--teal);
}

.footer-col-title {
    font-weight: 600;
    font-size: 15px;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--teal-light);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--gray-700);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--teal-light);
}

.footer-mini {
    background: var(--navy);
    padding: 32px 0;
    text-align: center;
    color: var(--gray-500);
    font-size: 13px;
}

.footer-mini a {
    color: var(--teal-light);
    text-decoration: none;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
