/* --- VARIABLES --- */
:root {
    /* Colors */
    --bg-paper: #F8F5F0;
    --text-black: #1a1a1a;
    --accent-orange: #FF6B35;
    --accent-teal: #00C9A7;
    --accent-yellow: #FFD93D;

    /* Fonts */
    --font-display: 'Clash Display', sans-serif;
    --font-body: 'Satoshi', sans-serif;

    /* Shapes */
    --blob-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    --radius-soft: 20px;
    --radius-pill: 50px;
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-paper);
    color: var(--text-black);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    position: relative;
    line-height: 1.6;
}

/* PAPER TEXTURE OVERLAY */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: multiply;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    /* Clash Display looks bold enough at 600 */
    line-height: 0.95;
    /* Looseen slightly for Clash */
    text-transform: uppercase;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* --- UTILITY & SHAPES --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    /* Reduced padding for mobile */
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}


.blob-shape {
    position: absolute;
    z-index: 0;
    filter: blur(40px);
    opacity: 0.8;
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

/* --- NAVIGATION --- */
nav {
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
}

@media (min-width: 768px) {
    nav {
        padding: 30px 40px;
    }
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    /* Removed border for cleaner look */
    transition: transform 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: none;
    /* Mobile hidden by default */
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 30px;
        align-items: center;
    }
}

.nav-link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-link:hover::after {
    width: 100%;
}

/* --- HERO SECTION --- */
header.hero {
    min-height: 85vh;
    /* Adjusted */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    /* Adjusted clamp min */
    margin-bottom: 30px;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 500;
    text-transform: none;
}

.btn {
    display: inline-block;
    background: var(--text-black);
    color: var(--bg-paper);
    padding: 18px 40px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid var(--text-black);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.btn:hover {
    background-color: var(--bg-paper);
    color: var(--text-black);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--text-black);
}

.btn-secondary:hover {
    background: var(--text-black);
    color: var(--bg-paper);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


/* Floating blobs in hero */
.blob-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-orange);
    top: 10%;
    left: -5%;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: var(--accent-teal);
    bottom: 10%;
    right: 10%;
    animation-delay: -2s;
}

/* --- SCROLL TEXT --- */
.marquee {
    background: var(--accent-yellow);
    color: var(--text-black);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 2px solid var(--text-black);
    border-bottom: 2px solid var(--text-black);
    transform: rotate(-2deg) scale(1.02);
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
}

.marquee-content {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 2rem;
    text-transform: uppercase;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- ABOUT SECTION --- */
.about {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
    max-width: 800px;
}

.section-header h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.3rem;
    max-width: 650px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: #fff;
    border: 2px solid var(--text-black);
    border-radius: var(--radius-soft);
    padding: 40px;
    position: relative;
    transition: background-color 0.3s ease;
    box-shadow: 10px 10px 0 var(--text-black);
    height: 100%;
}

.feature-card:hover {
    background-color: #fafafa;
    /* No movement explicitly requested */
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: var(--text-black);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* --- PRICING SECTION --- */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: flex-start;
}

@media (min-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: #fff;
    border: 2px solid var(--text-black);
    border-radius: var(--radius-soft);
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card.highlight {
    background: var(--text-black);
    color: var(--bg-paper);
    transform: scale(1.05);
    /* Slight scale for highlight */
    box-shadow: 15px 15px 0 var(--accent-orange);
    z-index: 10;
}

/* No movement on hover, just shadow color change if anything */
.pricing-card:not(.highlight):hover {
    box-shadow: 10px 10px 0 var(--accent-teal);
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.price {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    margin: 20px 0;
    display: block;
}

.price span {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li .material-icons {
    font-size: 1.2rem;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    background: transparent;
    color: inherit;
    border-color: currentColor;
}

.pricing-card .btn:hover {
    background: var(--accent-yellow);
    color: var(--text-black);
    border-color: var(--text-black);
}

.pricing-card.highlight .btn {
    background: var(--bg-paper);
    color: var(--text-black);
}

.pricing-card.highlight .btn:hover {
    background: var(--accent-orange);
    color: var(--bg-paper);
    border-color: var(--bg-paper);
}


/* --- FOOTER --- */
footer {
    background: var(--text-black);
    color: var(--bg-paper);
    margin-top: 50px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding-top: 80px;
    overflow: hidden;
}

.footer-cta-section {
    text-align: center;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
}

.cta-text {
    font-size: clamp(2.5rem, 6vw, 6rem);
    line-height: 1;
    margin-bottom: 30px;
    color: var(--accent-teal);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 60px;
    text-align: center;
}

@media (min-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        text-align: left;
    }
}

.footer-col h4 {
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: inline-block;
}

@media (min-width: 900px) {
    .footer-logo {
        display: block;
        /* Align left */
    }
}

.footer-link-list {
    list-style: none;
}

.footer-link-list li {
    margin-bottom: 15px;
}

.footer-link-list a {
    color: var(--bg-paper);
    opacity: 0.7;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

@media (min-width: 900px) {
    .footer-link-list a {
        justify-content: flex-start;
    }
}

.footer-link-list a:hover {
    opacity: 1;
    color: var(--accent-teal);
    padding-left: 5px;
}

.footer-bottom {
    background: #111;
    /* Slightly darker */
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* --- MATERIAL ICONS --- */
.material-icons-outlined {
    vertical-align: middle;
}