/* =========================================
   CSS variables for Lofty Lab Aesthetic
========================================= */
:root {
    /* Colors */
    --bg-color: #fcfcfc;
    --text-main: #0B132B;
    /* Deep dark blue for massive text */
    --text-muted: #4a5568;

    /* Vibrant Accents */
    --accent-blue: #4da6ff;
    --accent-green: #59d18b;
    --accent-yellow: #fde047;
    --accent-orange: #ff7f50;
    --accent-purple: #c084fc;
    --accent-pink: #f472b6;

    /* Fonts */
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Radii */
    --radius-pill: 9999px;
    --radius-card: 24px;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-float: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    --shadow-sticker: 0px 4px 10px rgba(0, 0, 0, 0.1), 0 0 0 3px white;
}

/* =========================================
   Reset & Base Styles
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

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

/* =========================================
   Typography
========================================= */
h1,
h2,
h3,
.massive-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.massive-title {
    font-size: clamp(4rem, 10vw, 8rem);
    text-align: center;
    margin-bottom: 4rem;
}

/* =========================================
   Navigation & Logo
========================================= */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 700px;
}

.nav-container {
    background: white;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.25);
    border-bottom: 2px solid rgba(0, 153, 255, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: -1px;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(0deg) scale(1.05);
}

.logo span {
    color: var(--accent-orange);
}

.nav-links {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-link:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.nav-link.active {
    background-color: var(--accent-blue);
    color: white;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    padding: 15px;
    font-weight: 600;
    border-radius: 10px;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

/* =========================================
   Buttons
========================================= */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    /* Bouncy transition matching Framer */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    text-align: center;
    border: none;
}

.btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: var(--shadow-float);
}

.btn:active {
    transform: scale(0.95);
}

.primary-btn {
    background-color: var(--accent-blue);
    color: white;
}

.secondary-btn {
    background-color: white;
    color: var(--text-main);
    box-shadow: var(--shadow-md);
}

.pill-btn {
    background-color: var(--text-main);
    color: white;
    padding: 10px 24px;
    font-size: 0.95rem;
}

.btn.large {
    font-size: 1.3rem;
    padding: 20px 40px;
}

.btn.full-width {
    width: 100%;
}

.center-btn {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

/* =========================================
   Stickers
========================================= */
.sticker {
    position: absolute;
    font-size: 2.5rem;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: var(--shadow-sticker);
    z-index: 10;
    animation: floatRotate 6s ease-in-out infinite;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.sticker:hover {
    transform: scale(1.2) rotate(15deg) !important;
    animation-play-state: paused;
}

@keyframes floatRotate {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(8deg);
    }

    66% {
        transform: translateY(10px) rotate(-5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* =========================================
   Hero Section
========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 30%, #fff1eb 70%, #ace0f9 100%);
    filter: blur(40px);
    z-index: -1;
    transform: scale(1.2);
    animation: gradientMove 15s ease infinite alternate;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 9rem);
    line-height: 1.15;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.highlight-text {
    color: var(--accent-orange);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sticker positioning in Hero */
.cloud {
    font-size: 4rem;
    padding: 0;
    box-shadow: none;
    background: transparent;
}

.left-cloud {
    top: 20%;
    left: -5%;
    animation-delay: 1s;
}

.right-cloud {
    top: 30%;
    right: -5%;
    animation-delay: 2s;
}

.eyes {
    top: 50%;
    left: -5%;
    transform: translateY(-50%) rotate(-10deg);
}

.rainbow {
    bottom: 30%;
    right: -5%;
    transform: rotate(15deg);
}

@media (max-width: 768px) {

    .eyes,
    .rainbow {
        font-size: 1.5rem;
    }
}

/* =========================================
   About Section
========================================= */
.about {
    padding: 8rem 0;
    background: white;
}

.about-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem auto;
    position: relative;
}

.section-tag {
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
    text-transform: none;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: -0.03em;
}

.sticker.heart {
    bottom: -20px;
    left: 20%;
}

.sticker._90s {
    top: -20px;
    right: 20%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-pill);
    overflow: hidden;
    /* Framer style blob mask */
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path fill="%23000" d="M44.7,-76.4C58.8,-69.2,71.8,-59.1,81.3,-46.3C90.8,-33.5,96.8,-18,97.4,-2.3C98.1,13.4,93.4,29.4,84.1,43.2C74.8,57,60.9,68.6,45.4,75.9C29.9,83.2,12.8,86.2,-3.5,90.4C-19.8,94.6,-35.3,100,-48.9,94.1C-62.5,88.2,-74.2,71,-81.4,53.8C-88.6,36.6,-91.3,19.4,-90.6,3.1C-89.9,-13.2,-85.8,-28.5,-77.8,-41.8C-69.8,-55.1,-57.9,-66.4,-44.1,-73.9C-30.3,-81.4,-14.6,-85.1,1.1,-86.5C16.8,-87.9,30.6,-83.6,44.7,-76.4Z" transform="translate(100 100) scale(1.1)"/></svg>');
    mask-size: cover;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path fill="%23000" d="M44.7,-76.4C58.8,-69.2,71.8,-59.1,81.3,-46.3C90.8,-33.5,96.8,-18,97.4,-2.3C98.1,13.4,93.4,29.4,84.1,43.2C74.8,57,60.9,68.6,45.4,75.9C29.9,83.2,12.8,86.2,-3.5,90.4C-19.8,94.6,-35.3,100,-48.9,94.1C-62.5,88.2,-74.2,71,-81.4,53.8C-88.6,36.6,-91.3,19.4,-90.6,3.1C-89.9,-13.2,-85.8,-28.5,-77.8,-41.8C-69.8,-55.1,-57.9,-66.4,-44.1,-73.9C-30.3,-81.4,-14.6,-85.1,1.1,-86.5C16.8,-87.9,30.6,-83.6,44.7,-76.4Z" transform="translate(100 100) scale(1.1)"/></svg>');
    -webkit-mask-size: cover;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    aspect-ratio: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text .intro-p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.expertise-list h3,
.skills-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.expertise-item {
    margin-bottom: 1.5rem;
}

.expertise-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.expertise-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    border: 2px solid transparent;
}

.bg-yellow {
    background-color: var(--accent-yellow);
}

.bg-blue {
    background-color: var(--accent-blue);
    color: white;
}

.bg-green {
    background-color: var(--accent-green);
}

.bg-orange {
    background-color: var(--accent-orange);
    color: white;
}

.bg-purple {
    background-color: var(--accent-purple);
    color: white;
}

.bg-pink {
    background-color: var(--accent-pink);
    color: white;
}

.bg-dark {
    background-color: var(--text-main);
    color: white;
}

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

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* =========================================
   Works Section
========================================= */
.works {
    padding: 8rem 0;
    background: #f4f5f7;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.work-card {
    border-radius: var(--radius-card);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-float);
}

.work-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
}

.work-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    background: white;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.work-card:hover .work-image img {
    transform: scale(1.05);
}

.work-info h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
    text-transform: none;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.work-info .role {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.work-info .desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

@media (max-width: 992px) {
    .works-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* =========================================
   Store Section
========================================= */
.store {
    padding: 8rem 0;
    background: white;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: var(--radius-card);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float);
}

.product-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-bottom: 1.5rem;
    background: #f0f0f0;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--text-main);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1.2rem;
}

.price-tag.free {
    background: var(--accent-green);
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.product-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

/* =========================================
   Creative Sections (Home)
========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border: 2px solid #eaeaea;
    padding: 2rem;
    border-radius: var(--radius-card);
    transition: all 0.4s ease;
}

.service-card:hover {
    background: var(--text-main);
    color: white;
    transform: translateY(-10px);
    box-shadow: var(--shadow-float);
    border-color: var(--text-main);
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.service-card:hover p {
    color: #e0e0e0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.skill-card {
    background: white;
    border-radius: var(--radius-card);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid #f0f0f0;
}

.skill-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-float);
    border-color: var(--accent-orange);
}

.skill-card .skill-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.skill-card:hover .skill-icon {
    transform: rotate(10deg) scale(1.1);
}

.skill-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.skill-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.home-reel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 2rem 0;
    scrollbar-width: none;
    /* Firefox */
}

.home-reel::-webkit-scrollbar {
    display: none;
}

/* Chrome */
.reel-img {
    height: 300px;
    border-radius: var(--radius-card);
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-md);
    cursor: grab;
}

.reel-img:hover {
    transform: scale(1.05) rotate(2deg);
    z-index: 2;
}

/* Social Grid & Cards */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-card-new {
    background: white;
    border-radius: var(--radius-card);
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.1);
    border: 1px solid rgba(0, 153, 255, 0.3); /* blue border */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.social-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 153, 255, 0.3);
}

.social-icon-new {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
    border-radius: 50%;
    object-fit: contain;
    border: 1px solid rgba(0, 153, 255, 0.3); /* border in icon */
    box-shadow: 0 0 15px rgba(0, 153, 255, 0.25); /* little glow in icon */
    padding: 10px;
    background: white;
    transition: transform 0.3s ease;
}

.social-card-new:hover .social-icon-new {
    transform: scale(1.1) rotate(5deg);
}

.social-card-new h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.social-card-new p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Email Card */
.email-card-container {
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.email-card {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: var(--radius-card);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 153, 255, 0.2);
    text-align: center;
    color: white;
}

.email-card::before, .email-card::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(20px);
}

.email-card::before {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
}

.email-card::after {
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
}

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

.email-card h3 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.email-card p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--accent-blue);
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.email-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* =========================================
   Lofty Lab Advanced Layouts (Blob, Marquee, Waves)
========================================= */

/* Morphing Blob (Our Superpowers) */
.blob-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 4rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    background-size: cover;
    background-position: center;
    animation: morph 8s ease-in-out infinite;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transition: all 1s ease-in-out;
    z-index: 1;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.1);
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.blob-content {
    position: relative;
    z-index: 2;
    text-align: center;
    pointer-events: none;
}

.blob-content img {
    max-width: 80%;
    height: auto;
    object-fit: contain;
}

/* Infinite Marquee */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    width: 100%;
    padding: 2rem 0;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    gap: 1rem;
    width: max-content;
    min-width: 100%;
    justify-content: space-around;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Trusted By Grid */
.trusted-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.trusted-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.trusted-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 1px solid #eaeaea;
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.trusted-circle:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Massive Contact Card */
.contact-card-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1100px;
    margin: 0 auto 4rem auto;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    background: #4A90E2;
    /* Bright blue background */
    padding: 2rem;
}

@media(min-width: 900px) {
    .contact-card-wrapper {
        flex-direction: row;
        gap: 2rem;
    }
}

.contact-left {
    background: #0B132B;
    /* Dark navy */
    color: white;
    padding: 6rem 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-radius: 30px;
    text-align: left;
}

.contact-left h2 {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    line-height: 0.9;
    text-transform: uppercase;
    color: #fff9a6;
    /* Pale yellow from screenshot */
    transform: rotate(-3deg);
    margin: 0;
}

.contact-left .say-hi {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    color: #FFDE59;
    font-style: italic;
    margin-bottom: -10px;
    display: block;
}

.contact-right {
    background: white;
    padding: 4rem 3rem;
    flex: 1;
    border-radius: 30px;
    z-index: 2;
    text-align: left;
}

.contact-right h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 2rem;
}

/* Wavy SVG Footer border */
.wave-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -100px;
}

.wave-container svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 150px;
    transform: rotateY(180deg);
}

.wave-container .shape-fill {
    fill: #4A90E2;
}

.contact-section {
    padding: 8rem 0;
    background: #fcfcfc;
    text-align: center;
}

.social-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 4rem auto 0 auto;
}

.social-card {
    background: white;
    border-radius: var(--radius-card);
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-float);
}

.social-card .icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.social-card .name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

/* =========================================
   Footer
========================================= */
.footer {
    position: relative;
    padding: 8rem 0 2rem 0;
    background: var(--text-main);
    color: white;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, #2a3b5c, var(--text-main));
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer .massive-title {
    color: white;
    margin-bottom: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.footer-col p,
.footer-col a {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.social-links a {
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
}

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* =========================================
   Modal (Showreel)
========================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(11, 19, 43, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 40px;
    border-radius: var(--radius-card);
    width: 90%;
    max-width: 800px;
    box-shadow: var(--shadow-float);
    position: relative;
    text-align: center;
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
}

.close-modal:hover {
    color: black;
}

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.modal-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 2rem;
}

.modal-img {
    border-radius: 12px;
    aspect-ratio: 16/9;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}

.modal-img:hover {
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .modal-thumbnails {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Animations (Scroll Reveal)
========================================= */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.animate-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

/* =========================================
   Why Us / Why Me Section
========================================= */
.why-us {
    background: #4A90E2;
    padding: 8rem 0;
}

.why-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: #0B132B;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 4rem;
    line-height: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.why-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 350px;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-main);
}

.why-sticker {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 4rem;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

.why-card h3 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.why-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

/* =========================================
   Our Process Section
========================================= */
.process-section {
    background: white;
    padding: 8rem 0;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: #0B132B;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 4rem;
    line-height: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-number {
    position: absolute;
    top: 2rem;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-main);
}

.process-sticker {
    font-size: 5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

.process-card h3 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.process-card p {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}

@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* =========================================
   FAQ Section
========================================= */
.faq-section {
    padding: 6rem 0;
    background: #f4f5f7;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 2rem 2rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* =========================================
   Superpower Card Animations (LoftyLab Style)
========================================= */
.superpower-item {
    border-radius: 40px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.superpower-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-float);
}

.sp-number {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    opacity: 0.6;
    color: currentColor;
}

.sp-sticker {
    margin-bottom: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sp-sticker img {
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.2));
}

.superpower-item:hover .sp-sticker {
    transform: scale(1.25) rotate(8deg);
}

.superpower-item h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    line-height: 1.1;
}

.superpower-item p {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.5;
}

/* =========================================
   Standardized Logo Sizes
========================================= */
.tool-logo {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
    border-radius: 12px;
}

.social-logo {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    object-fit: contain !important;
    background: white !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #eaeaea;
    padding: 8px;
    /* Adds consistent inner padding so the actual logo inside is standard size */
}

/* =========================================
   Animated Cloud Divider (LoftyLab Style)
========================================= */
.cloud-divider-container {
    position: relative;
    width: 100%;
    height: 160px;
    /* Increased height for taller clouds */
    overflow: hidden;
    margin-top: -100px;
    /* Pull up higher */
    margin-bottom: -4rem;
    /* Offset the padding of the next section */
    z-index: 5;
    background: transparent;
}

.cloud-divider {
    position: absolute;
    bottom: -5px;
    /* ensure no gap at the bottom */
    left: 0;
    width: 200vw;
    min-width: 4000px;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" preserveAspectRatio="none"><path fill="%23ffffff" stroke="%231a1a2e" stroke-width="3" d="M0,200 L0,150 A 100 100 0 0 1 120 120 A 130 130 0 0 1 320 90 A 160 160 0 0 1 580 70 A 120 120 0 0 1 780 100 A 100 100 0 0 1 930 130 A 80 80 0 0 1 1000 150 L1000,200 Z" /></svg>');
    background-repeat: repeat-x;
    background-size: 1500px 160px;
    /* Much larger and wider bumps */
    background-position: 0 bottom;
    /* Animation removed, now handled by JS scroll parallax */
    filter: drop-shadow(0 -5px 15px rgba(0, 0, 0, 0.06));
    will-change: transform;
}