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

:root {
    /* Spacing Scale - 8px based system */
    --space-xs: 0.25rem;
    /* 4px - Micro spacing */
    --space-sm: 0.5rem;
    /* 8px - Tiny spacing */
    --space-md: 0.75rem;
    /* 12px - Small spacing */
    --space-base: 1rem;
    /* 16px - Base spacing */
    --space-lg: 1.5rem;
    /* 24px - Medium spacing */
    --space-xl: 2rem;
    /* 32px - Large spacing */
    --space-2xl: 3rem;
    /* 48px - XL spacing */
    --space-3xl: 4rem;
    /* 64px - XXL spacing */
    --space-4xl: 5rem;
    /* 80px - Section spacing */
    --space-5xl: 7.5rem;
    /* 120px - Hero spacing */
    --space-6xl: 180px;
    /* 180px 


/* Container widths */
    --container-padding: 1.25rem;
    /* 20px desktop */
    --container-padding-mobile: 1rem;
    /* 16px mobile */
}


body {
    /* MAKAAN COLOR SCHEME - Body background color - Eggshell white */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f3f4f6 100%);
    min-height: 100vh;
}


/* Header Starts */

/* Default: transparent header */
.header {
    position: fixed;
    top: 10px;
    /* breathing room on top of header */
    left: 50%;
    /* start from the middle of the viewport */
    transform: translateX(-50%);
    /* shift back by half its own width */
    z-index: 1000;
    margin: 0 auto;
    padding: var(--space-sm) var(--space-base);
    /* 8px 16px */
    background: transparent;
    border: none;
    border-radius: 20px;
    max-width: 1200px;
    width: 90%;
    transition: all 0.3s ease;
}

/* On scroll: glassmorphism effect */
.header.scrolled {
    background: rgba(255, 255, 255, 0.255);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* for Safari */
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    background-clip: padding-box;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo in desktop header */
.header-logo {
    display: flex;
    align-items: center;
    margin-bottom: auto;
}

.header-logo img {
    height: 40px;
    /* default desktop size */
    width: auto;
    display: block;
}

/* Tablet screens */
@media (max-width: 991px) {
    .header-logo img {
        height: 32px;
        /* slightly smaller */
    }
}

/* Mobile screens */
@media (max-width: 480px) {
    .header-logo img {
        height: 32px;
        /* smallest size for narrow screens */
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    /* 32px - no change needed */
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #0d9488;
    /* MAKAAN COLOR SCHEME - highlight for menu items in header - navigation */
}


.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-base);
    /* 16px - no change needed */
    font-size: 12px;
    /* slightly smaller text */
}

.cta-btn {
    /* MAKAAN COLOR SCHEME - "login" button in header - navigation */
    padding: var(--space-md) var(--space-lg);
    /* 12px 24px - no change needed */
    background: white;
    color: #0d9488;
    /* teal green text */
    border: 1px solid #0d9488;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn:hover {
    /* MAKAAN COLOR SCHEME - "login" button in header - navigation */
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
}

/* Hide hamburger on desktop */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* NEW Mobile header starts */
/* Hide mobile menu by default */

body.menu-open .page-wrapper {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

body.menu-open,
html.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 98%;
    max-width: auto;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid black;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    padding: 20px;
}

/* Mobile menu content layout */
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex;
    /* center all content */
    text-align: left;
    height: 50%;
    justify-content: space-between;
    /* space out sections */
}

@media (max-width: 991px) {
    .header {
        padding: var(--space-sm) var(--space-base);
        /* 8px 16px */
        /* tighter on mobile */
    }
}

/* Header inside mobile hamburger menu (logo + close) */

/* Logo inside mobile hamburger menu header */
.header-hamburger-logo {
    display: flex;
    align-items: center;
    margin-bottom: auto;
}

.header-hamburger-logo img {
    height: 40px;
    /* default desktop size */
    width: auto;
    display: block;
}

/* Tablet screens */
@media (max-width: 991px) {
    .header-hamburger-logo img {
        height: 32px;
        /* slightly smaller */
    }
}

/* Mobile screens */
@media (max-width: 480px) {
    .header-hamburger-logo img {
        height: 32px;
        /* smallest size for narrow screens */
    }
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.close-btn {
    font-size: 24px;
    font-weight: thin;
    color: #000000;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    /* removes the bullet dots */
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile-menu ul li {
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    /* thin semi-transparent divider */
}

.mobile-menu ul li:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.mobile-menu ul li a {
    display: block;
    color: #000000;
    text-decoration: none;
    font-size: 18px;
}

.mobile-login {
    display: block;
    margin: 20px auto;
    /* top space + center align horizontally */
    width: 100%;
    /* makes it wider */
    text-align: center;
    /* text inside stays centered */
    font-size: 14px;
}

/* Hide desktop login in mobile view */
@media (max-width: 991px) {
    .desktop-login {
        display: none;
    }
}

@media (max-width: 991px) {

    /* Hide desktop nav menu */
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 22px;
        height: 14px;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        height: 2px;
        /* thickness */
        background-color: #000000;
        border-radius: 1px;
    }
}

/* NEW Mobile header ends */

/* Header Ends */

/* Hero Section - Landing Page starts */



.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertical center */
    align-items: center;
    /* horizontal center */
    text-align: center;
    padding: var(--space-6xl) 0 var(--space-3xl);
    /* 180px top, 64px bottom */
    max-width: 1000px;
    /* Consistent content width */
    margin: 0 auto;
}

.hero h1 {
    /* MAKAAN COLOR SCHEME - Font color of heading in landing page*/
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    /* 32px */
    color: #111827;
}

.hero .highlight {
    /* MAKAAN COLOR SCHEME - harmoni in lighter gradient highlight in landing page */
    background: linear-gradient(45deg, #5fd0c3, #6fa3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .captionhighlight {
    /* MAKAAN COLOR SCHEME - Get 1-month free trial in regular gradient highlight in landing page */
    background: linear-gradient(45deg, #0d9488, #2463eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    /* MAKAAN COLOR SCHEME - Font color of subheading in landing page*/
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: var(--space-xl);
    /* 32px */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    /* 24px */
    margin-bottom: var(--space-2xl);
    /* 48px */
}


/* Hero Section - Landing Page ends */

/* Features in Landing page starts */
.features {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    /* 32px */
    padding: var(--space-lg) 0;
    /* 24px vertical */
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    /* Layout */
    display: flex;
    align-items: center;
    gap: 8px;

    /* Base styles */
    color: #111827;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
    /* smooth text transition */
}

.feature svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
    color: #111827;
    transition: color 0.3s ease;
    /* smooth icon transition */
}

/* Hover effect for both icon & text */
.feature:hover {
    color: #0d9488;
}

.feature:hover svg {
    color: #0d9488;
}

/* MacBook Mockup in landing page starts*/
.MacBook-mockup-place1 {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 40px;
    box-shadow: none;
}

.MacBook-frame-place1 {
    width: 100%;
    display: block;
}

.MacBook-screen-place1 {
    position: absolute;
    top: -5%;      /* top edge */
    bottom: 5%;    /* bottom edge */
    left: 14.4%;      /* left edge */
    right: 13.6%;     /* right edge */
    overflow: hidden;
}

.MacBook-screen-place1 video {
    width: 99%;
    height: 99%;
    object-fit: contain; /* fills the mockup screen neatly */
}

/* Active feature highlight */
.feature.active {
    color: #0d9488;
}

.feature.active svg{
    color: #0d9488;
}



/* MacBook Mockup in landing page ends*/

/* Features in Landing page ends */

/* Reviews section in landing page - "Trusted by ..." starts */
.trusted-by {
    background: linear-gradient(45deg, rgba(13, 148, 136, 0.6), rgba(36, 99, 235, 0.6));
    text-align: center;
    padding: var(--space-4xl) var(--space-base);
    /* 80px 16px */
    max-width: auto;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 50px;
    height: 50px;
    top: 30%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes float {

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

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

    50% {
        transform: translateY(-10px) rotate(-3deg);
    }

    75% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.trusted-by h3 {
    /* MAKAAN COLOR SCHEME - Reviews in landing page */
    font-size: 1.5rem;
    color: white;
    margin-bottom: var(--space-2xl);
    /* 48px */
}

.logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: var(--space-xl);
    /* 32px */
    opacity: 0.6;
    flex-wrap: nowrap;
    /* ✅ Prevent wrapping to second line */
    white-space: nowrap;
    /* ✅ Keep everything in one continuous row */
    animation: scroll-logos 20s linear infinite;
}

.logos-wrapper {
    overflow: hidden;
    width: 100%;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

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

.logo-item {
    font-weight: 600;
    color: white;
    font-size: 18px;
}

/* Reviews section in landing page ends */


/* Section2 starts- HarmoniOS by makemakaan. The modern OS to help your team do more in less time, everyday */
.ai-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f3f4f6 100%);
    /*MAKAAN COLOR SCHEME - background color in section 2*/
    color: #111827;
    /*MAKAAN COLOR SCHEME - Heading in section 2*/
    padding: var(--space-4xl) var(--space-base);
    /* 80px 16px - no change needed */
    text-align: center;
}

.ai-container {
    max-width: 1000px;
    /* Consistent content width */
    margin: 0 auto;
}

.ai-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--space-xl);
    /* 32px */
}

.ai-header h3 {
    font-size: 1.5rem;
    color: #6b7280;
    /*MAKAAN COLOR SCHEME - Subheading in section 2*/
    margin-bottom: var(--space-lg);
    /* 24px */
}

.ai-features-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    /* 32px - no change needed */
    margin-bottom: var(--space-lg);
    /* 24px - no change needed */
}

.feature-tab {
    /*MAKAAN COLOR SCHEME - default feature buttons in section 2*/
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    /* 8px - no change needed */
    padding: var(--space-md) var(--space-lg);
    /* 12px 24px - no change needed */
    border: 1px solid rgba(211, 211, 211, 1);
    /* LightGray keyword equivalent */
    background: rgba(255, 255, 255, 0.1);
    color: #6b7280;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.feature-tab.active {
    /*MAKAAN COLOR SCHEME - feature button when selected in section 2*/
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #0d9488;
    color: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(13, 148, 136, 0.3);
}

.feature-tab:hover {
    /*MAKAAN COLOR SCHEME - feature button on hover in section 2*/
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(13, 148, 136, 0.3);
}

.tab-text {
    display: inline;
}

.tab-icon {
    display: none;
}


.ai-description {
    display: none;
    font-size: 1.25rem;
    color: #6b7280;
    /*MAKAAN COLOR SCHEME - Caption in section 2*/
    margin-bottom: var(--space-xl);
    /* 32px */
    line-height: 1.6;
}

.ai-description.active {
    display: block;
  }

/* MacBook Mockup in HarmoniOS by makemakaan section starts*/
.MacBook-mockup-place2 {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
    margin-bottom: 40px;
    box-shadow: none;
}

.MacBook-frame-place2 {
    width: 100%;
    display: block;
}

.MacBook-screen-place2 {
    position: absolute;
    top: 10.8%;      /* top edge */
    bottom: 18%;    /* bottom edge */
    left: 13.8%;      /* left edge */
    right: 13.8%;     /* right edge */
    border-radius: 4px;
    overflow: hidden;
}

.MacBook-screen-place2 iframe {
    border: none;
    object-fit: cover; /* zoom/crop to fill */

}

.feature2-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none; /* hide by default */
}

.feature2-video.active {
    display: block; /* only show active one */
}
/* MacBook Mockup in HarmoniOS by makemakaan section ends*/

/* Section2 ends - HarmoniOS by makemakaan. The modern OS to help your team do more in less time, everyday */

/* Section3 starts - Feature lists - Simplify Operations & Maximise Productivity */
/* Desktop grid stays the same */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.ai-benefits h3 {
    /* MAKAAN COLOR SCHEME - feature lists title in section 2*/
    font-size: 2rem;
    padding-top: var(--space-2xl);
    /* 48px instead of 40px */
    padding-bottom: var(--space-xl);
    /* 32px instead of 30px */
    margin: var(--space-3xl) 0 var(--space-2xl);
    /* 64px top, 48px bottom */
    color: #111827;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    /* 32px */
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    /*MAKAAN COLOR SCHEME - Feature cards in section 2*/
    background: linear-gradient(45deg, rgba(13, 148, 136, 0.2), rgba(36, 99, 235, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid white;
    border-radius: 16px;
    padding: var(--space-xl) var(--space-lg);
    /* 32px 24px */
    margin-bottom: var(--space-base);
    /* 16px */
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    /*MAKAAN COLOR SCHEME - Feature cards on hover in section 2*/
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(13, 148, 136, 0.4);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-base);
    /* 16px instead of 20px */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    /* lucide icons for features */
    width: 22px;
    /* adjust for bigger/smaller */
    height: 22px;
    stroke-width: 1.5;
    /* makes the lines thinner/thicker */
    color: #ffffff;
    position: absolute;
}

.icon-Dashboard-selection {
    /*MAKAAN COLOR SCHEME - Dashboard icon in feature cards in section 3*/
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #5fd0c3, #6fa3ff);
    border-radius: 12px;
    border: 1px solid white;
    position: relative;
}

.icon-Projects-selection {
    /*MAKAAN COLOR SCHEME - projects icon in feature cards in section 3*/
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #5fd0c3, #6fa3ff);
    border-radius: 12px;
    border: 1px solid white;
    position: relative;
}

.icon-Documents-selection {
    /*MAKAAN COLOR SCHEME - projects icon in feature cards in section 3*/
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #5fd0c3, #6fa3ff);
    border-radius: 12px;
    border: 1px solid white;
    position: relative;
}

.icon-ToDos-selection {
    /*MAKAAN COLOR SCHEME - projects icon in feature cards in section 3*/
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #5fd0c3, #6fa3ff);
    border-radius: 12px;
    border: 1px solid white;
    position: relative;
}

.icon-Moodboard-selection {
    /*MAKAAN COLOR SCHEME - projects icon in feature cards in section 3*/
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #5fd0c3, #6fa3ff);
    border-radius: 12px;
    border: 1px solid white;
    position: relative;
}

.icon-PermissionAccess-selection {
    /*MAKAAN COLOR SCHEME - projects icon in feature cards in section 3*/
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #5fd0c3, #6fa3ff);
    border-radius: 12px;
    border: 1px solid white;
    position: relative;
}

.benefit-card h4 {
    /* MAKAAN COLOR SCHEME - Feature title in feature card - Section2 */
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    /* 12px - no change needed */
    color: #111827;
}

.benefit-card p {
    /* MAKAAN COLOR SCHEME - Feature caption in feature card - Section2 */
    color: #111827;
    line-height: 1.6;
}

/* Section3 ends - Feature lists - Simplify Operations & Maximise Productivity */


/* Section 4 starts - Powerful without the complexity */
.features-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: var(--space-4xl) var(--space-base);
    /* 80px 16px - no change needed */
    text-align: center;
}

.features-container {
    max-width: 1000px;
    /* Consistent content width */
    margin: 0 auto;
}

.features-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--space-2xl);
    /* 48px */
    color: #1f2937;
}

.features-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    /* 32px - no change needed */
    margin-bottom: var(--space-lg);
    /* 24px - no change needed */
}

.features-nav .feature-tab {
    /*MAKEMAKAAN COLOR SCHEME - default Feature tabs in section 4 */
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid rgba(211, 211, 211, 1);
    /* LightGray keyword equivalent */
    background: rgba(255, 255, 255, 0.1);
    color: #6b7280;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.features-nav .feature-tab.active {
    /*MAKEMAKAAN COLOR SCHEME - Feature tabs on select in section 4 */
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #0d9488;
    color: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(13, 148, 136, 0.3);
}

.features-nav .feature-tab:hover {
    /*MAKEMAKAAN COLOR SCHEME - Feature tabs on hover in section 4 */
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(13, 148, 136, 0.3);
}

.feature-tab-text {
    display: inline;
}

.feature-tab-icon {
    display: none;
}

.features-description {
    display: none;
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: var(--space-xl);
    /* 32px */
    line-height: 1.6;
}

.features-description.active {
    display: block;
}


/* MacBook Mockup in Powerful without the complexity section starts*/
.MacBook-mockup-place3 {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
    box-shadow: none;
}

.MacBook-frame-place3 {
    width: 100%;
    display: block;
}

.MacBook-screen-place3 {
    position: absolute;
    top: 10.8%;      /* top edge */
    bottom: 18%;    /* bottom edge */
    left: 13.8%;      /* left edge */
    right: 13.8%;     /* right edge */
    border-radius: 4px;
    overflow: hidden;
}

.MacBook-screen-place3 iframe {
    border: none;
    object-fit: cover; /* zoom/crop to fill */

}

.feature3-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none; /* hide by default */
}

.feature3-video.active {
    display: block; /* only show active one */
}

/* MacBook Mockup in Powerful without the complexity section ends*/

/* Section 4 ends - Powerful without the complexity */


/* Built for modern A&D teams Section */

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 50px;
    height: 50px;
    top: 30%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes float {

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

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

    50% {
        transform: translateY(-10px) rotate(-3deg);
    }

    75% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.privacy-section {
    background: linear-gradient(45deg, rgba(13, 148, 136, 0.6), rgba(36, 99, 235, 0.6));
    padding: var(--space-4xl) var(--space-base);
    /* 80px 16px - no change needed */
    text-align: center;
    max-width: auto;
    position: relative;
    overflow: hidden;
}

.privacy-container {
    max-width: 1000px;
    /* Consistent content width */
    margin: 0 auto;
}

.privacy-container h2 {
    /* MAKAAN COLOR SCHEME - Heading in 'Built for modern A&D teams section'*/
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--space-2xl);
    /* 48px */
    color: white;
}

.privacy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    /* 32px instead of 40px */
}

.privacy-feature {
    text-align: center;
}

.privacy-icon {
    width: 60px;
    /* match gradient box size */
    height: 60px;
    display: flex;
    /* center icon horizontally/vertically */
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid white;
    background: linear-gradient(45deg, #5fd0c3, #6fa3ff);
    /* can be overridden per icon type */
    margin: 0 auto 16px;
    /* center in column layout */
}

.privacy-icon svg {
    width: 26px;
    /* smaller than container so it fits */
    height: 26px;
    stroke-width: 1.5;
    /* same line thickness */
    color: #ffffff;
}

.icon-Cloud-first {
    /* MAKAAN COLOR SCHEME - Cloud-First, Friction-Free Icon in 'Built for modern A&D teams section'*/
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #5fd0c3, #6fa3ff);
    border-radius: 16px;
    border: 1px solid white;
    position: relative;
}

.icon-Save-time {
    /* MAKAAN COLOR SCHEME - Save Time, Daily Icon in 'Built for modern A&D teams section'*/
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #5fd0c3, #6fa3ff);
    border-radius: 16px;
    border: 1px solid white;
    position: relative;
}

.icon-Always-sync {
    /* MAKAAN COLOR SCHEME - Always in Sync Icon in 'Built for modern A&D teams section'*/
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #5fd0c3, #6fa3ff);
    border-radius: 16px;
    border: 1px solid white;
    position: relative;
}

.privacy-feature h3 {
    /* MAKAAN COLOR SCHEME - subheading under icons in 'Built for modern A&D teams section'*/
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-base);
    /* 16px - no change needed */
    color: white;
}

.privacy-feature p {
    /* MAKAAN COLOR SCHEME - caption under icons in 'Built for modern A&D teams section'*/
    color: white;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* Mobile Section starts */
.mobile-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: var(--space-4xl) var(--space-base);
    /* 80px 16px - no change needed */
    text-align: center;
}

.mobile-container {
    max-width: 1000px;
    /* Consistent content width */
    margin: 0 auto;

}

.mobile-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--space-xl);
    /* 32px */
    color: #111827;
}

.mobile-header h3 {
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: var(--space-lg);
    /* 24px */
}

.mobile-content {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    /* 48px */
    max-width: 1000px;
    margin: 0 auto;
}

.mobile-demo {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Iphone Mockup in Mobile-friendly, always accessible section starts*/
.Iphone-mockup {
    position: relative;
    width: 100%;
    max-width: none;
    margin: auto;
    margin-bottom: 10px;
    box-shadow: none;
}

.Iphone-frame {
    width: 140%;
    display: block;
}

/* screen area inside the mockup */
.Iphone-screen {
    position: absolute;
    top: 12%;           /* adjust to align perfectly with your mockup */
    left: 11%;
    width: 78%;
    height: 65%;
    border-radius: 12px; /* ✅ optional, to match screen corners */
    
}

/* if you’re using a static image (mockup screenshot) */
.Iphone-screen img {
    width: 63%;
    height: 116.5%;
    object-fit: cover;  /* ✅ keeps proportions without distortion */
    border-radius: 28px;
    align-items: center;        /* ✅ center vertically */
    justify-content: center;    /* ✅ center horizontally */
    transform: translateX(40%); /* move 10% to the right */


}

/* Iphone Mockup in Mobile-friendly, always accessible section ends*/



.mobile-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.mobile-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-base);
    /* 16px - no change needed */
}

.mobile-feature .feature-icon {
    /*MAKAAN COLOR SCHEME - Icon color in mobile view feature list */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #5fd0c3, #6fa3ff);
    border-radius: 12px;
    flex-shrink: 0;
}

.mobile-feature .feature-icon svg {
    width: 20px;
    /* Icons fit nicely inside */
    height: 20px;
    stroke-width: 2;
    color: #ffffff;
}

.mobile-feature h4 {
    /*MAKAAN COLOR SCHEME - Heading of features in Mobile view */
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.mobile-feature p {
    /*MAKAAN COLOR SCHEME - Caption of features in Mobile view */
    color: #6b7280;
    line-height: 1.5;
}

/* Hide mobile-only feature in desktop view */
.mobile-features-mobile-only {
    display: none;
}

/* Mobile Section ends */

/* Success metrics section starts -  Studio Success Simplified */
.community-section {
    background: linear-gradient(45deg, rgba(13, 148, 136, 0.6), rgba(36, 99, 235, 0.6));
    padding: var(--space-4xl) var(--space-base);
    text-align: center;
    max-width: auto;
    position: relative;
    overflow: hidden;
}


.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 50px;
    height: 50px;
    top: 30%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes float {

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

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

    50% {
        transform: translateY(-10px) rotate(-3deg);
    }

    75% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.community-container {
    max-width: 1000px;
    /* Consistent content width */
    margin: 0 auto;

}

.community-container h2 {
    /*MAKAAN COLOR SCHEME - Heading font and color in Studio Success Simplified*/
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--space-2xl);
    /* 48px */
    color: white;
    line-height: 1.2;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    /* 32px */
}

.stat {
    text-align: center;
}

.stat-number {
    /*MAKAAN COLOR SCHEME - Metrics heading font and color in Studio Success Simplified*/
    font-size: 5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 16px;
}

.stat-number .unit {
    /*MAKAAN COLOR SCHEME - hrs/wk and /yr font and color in Studio Success Simplified*/
    font-size: 2rem;
    /* smaller than the number */
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 16px;
}

.stat-number .star {
    /*MAKAAN COLOR SCHEME - '*' font and color in Studio Success Simplified*/
    font-size: 2rem;
    /* smaller than the number */
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 16px;
    vertical-align: top;
    /* or 'super' if you want it slightly raised */
}

.plus {
    /*MAKAAN COLOR SCHEME - '%' font and color in Studio Success Simplified*/
    font-size: 4rem;
    /* smaller than the number */
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 16px;
}

.stat-label {
    /*MAKAAN COLOR SCHEME - Metrics caption font and color in Studio Success Simplified*/
    font-size: 1rem;
    color: white;
    font-weight: 500;
}

/* Success metrics section ends -  Studio Success Simplified */

/* Section 8 starts - About Us - Designed by and for the architecture & design community */
.community-hero {
    padding: var(--space-4xl) var(--space-base);
    max-width: 1200px;
    margin: 0 auto;
}

.community-content {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
    /* 64px */
    margin-bottom: 80px;
}

.community-text {
    flex: 1;
}

.community-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    /* 24px - no change needed */
    color: #1f2937;
}

.community-text p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    /* 32px */
}

.talktofounder-btn {
    /* Talk to founder button in about us section */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: var(--space-md) var(--space-lg);
    /* 12px 24px - no change needed */
    background: white;
    color: #2463eb;
    text-decoration: none;
    border: 1px solid #2463eb;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.talktofounder-btn:hover {
    /* Talk to founder button on hover in about us section */
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(36, 99, 235, 0.3);
}


.community-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.floating-avatars {
    position: relative;
    width: 300px;
    height: 300px;
}

/* Common avatar style */
.avatar {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Center avatar */
.avatar-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: float 5s ease-in-out infinite;
    /* ✅ Now it bounces */
}

@keyframes float {

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

    33% {
        transform: translateY(-15px) rotate(3deg);
    }

    66% {
        transform: translateY(-8px) rotate(-2deg);
    }
}

/* Section 8 ends - About Us - Designed by and for the architecture & design community */

/* Final CTA Section starts - Partnering closely with only 100 A&D firms*/
.final-cta {
    background: linear-gradient(45deg, rgba(13, 148, 136, 0.6), rgba(36, 99, 235, 0.6));
    padding: var(--space-4xl) var(--space-base);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1000px;
    /* Consistent content width */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-container h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-xl);
    /* 32px */
}

.cta-container .highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-container p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
    /* 48px */
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    /* 24px */
    margin-bottom: var(--space-2xl);
    /* 48px */
}


.btn-primary {
    /* MAKAAN COLOR SCHEME - "Get started button" in landing page */
    padding: var(--space-md) var(--space-lg);
    /* 12px 24px instead of 16px 32px */
    background: white;
    color: #0d9488;
    border: 1px solid #0d9488;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    /* MAKAAN COLOR SCHEME - "Get started" button-hover in landing page */
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(13, 148, 136, 0.3);
}

.btn-secondary {
    /* MAKAAN COLOR SCHEME - "Talk to founder" button in landing page */
    padding: var(--space-md) var(--space-lg);
    /* 12px 24px instead of 16px 32px */
    background: white;
    color: #2463eb;
    border: 1px solid #2463eb;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    /* MAKAAN COLOR SCHEME - "Talk to founder" button-hover in landing page */
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(36, 99, 235, 0.3);
}

/*talk to founder popover starts with whatsapp and calendly link*/
.popover {
    display: none;
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    padding: 32px 24px;
    /* a little extra breathing room */
    z-index: 3000;
    text-align: center;
    max-width: 300px;
}

/* new overlay container */
.popover-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    /* dim background */
    z-index: 2999;
}

.popover h4 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 700;
}

.popover p {
    margin-bottom: 14px;
    font-size: 1rem;
}

.popover-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin: 10px 0;
    padding: 10px 16px;
    background: white;
    color: #000000;
    border: 1px solid #ccc;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: background 0.3s;
}

.popover-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px #ccc;
}

.close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 20px;
    cursor: pointer;
}

/*talk to founder popover ends with whatsapp and calendly link*/

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 50px;
    height: 50px;
    top: 30%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes float {

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

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

    50% {
        transform: translateY(-10px) rotate(-3deg);
    }

    75% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Final CTA Section ends - Partnering closely with only 100 A&D firms*/


/* Pricing Section Styles Starts */

.pricing-section {
    padding: var(--space-4xl) var(--space-base);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111827;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: var(--space-2xl);
    /* 48px */
}

/* Grid layout */
.pricing-grid {
    display: flex;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    /* 32px */
    max-width: 1000px;
    margin: 0 auto;
}

.mobile-pricing-toggle {
    display: none;
}

/* Card style (same as benefit-card) */
.pricing-card {
    background: linear-gradient(45deg, rgba(13, 148, 136, 0.6), rgba(36, 99, 235, 0.6));
    backdrop-filter: blur(10px);
    border: 1px solid white;
    border-radius: 16px;
    padding: var(--space-xl) var(--space-lg);
    /* 32px 24px - no change needed */
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 375px;
    /* consistent narrow card */
    min-height: 500px;
    /* Keep as is */

}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(13, 148, 136, 0.4);
}

.pricing-card.highlight {
    border: 1px solid white;
}

/* Content inside cards */
.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-base);
    /* 16px - no change needed */
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price .per {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
}

.note {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    margin-bottom: var(--space-base);
    /* 16px - no change needed */
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: var(--space-lg);
    /* 24px - no change needed */
    display: block;
    text-align: left;
    /* Align text inside the list */
    counter-reset: feature-counter;
    /* start counter */

}

.pricing-features li {
    counter-increment: feature-counter;
    display: block;
    margin-bottom: var(--space-md);
    /* 12px - no change needed */
    font-size: 1rem;
    color: white;
}

.pricing-features li::before {
    content: counter(feature-counter) ". ";
    font-weight: bold;
    margin-right: 6px;
    color: white;
}

.pricing-cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    /* 24px */
    margin-bottom: var(--space-2xl);
    /* 48px */
}

.pricing-btn-primary {
    /* MAKAAN COLOR SCHEME - "Get started button" in landing page */
    padding: 16px 32px;
    background: white;
    color: #0d9488;
    border: 1px solid #0d9488;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;

}

.pricing-btn-primary:hover {
    /* MAKAAN COLOR SCHEME - "Get started" button-hover in landing page */
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(13, 148, 136, 0.3);
}

.pricing-btn-secondary {
    /* MAKAAN COLOR SCHEME - "Talk to founder" button in landing page */
    padding: 16px 32px;
    background: white;
    color: #2463eb;
    border: 1px solid #2463eb;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;

}

.pricing-btn-secondary:hover {
    /* MAKAAN COLOR SCHEME - "Talk to founder" button-hover in landing page */
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(36, 99, 235, 0.3);
}

.pricing-card {
    min-height: 500px;
    /* adjust height as needed */
    display: flex;
    flex-direction: column;
    /* stack content vertically */
    justify-content: space-between;
    /* spread header/features/CTA evenly */
    position: relative;
    /* ✅ keeps floating shapes inside */
    overflow: hidden;
    /* ✅ prevents shapes from spilling outside card */
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    /* ✅ clicks pass through */
    z-index: 0;
    /* ✅ behind text */
}

.pricing-card>*:not(.floating-elements) {
    position: relative;
    z-index: 1;
    /* ✅ ensures text/buttons stay above shapes */
}

.price-calculator {
    margin-top: 40px;
    text-align: center;
}

.price-calculator label {
    font-size: 1rem;
    font-weight: 600;
    margin-right: 8px;
    color: #111827;
}

.price-calculator input {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    width: 120px;
    text-align: center;
}

.price-calculator button {
    padding: 8px 16px;
    margin-left: 8px;
    border: none;
    border-radius: 8px;
    background: #0d9488;
    /* your brand green */
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.price-calculator button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(13, 148, 136, 0.3);
}

.pricing-breakdown .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin: 4px 0;
}

.pricing-breakdown .note {
    font-size: 0.9rem;
    color: #f0f0f0;
    margin-top: 8px;
}

/* Pricing Section Styles Ends*/


/* Footer Section - Design Starts */

.footer {
    background: #111827;
    color: white;
    padding: var(--space-4xl) var(--space-base) var(--space-2xl);
    /* 80px 16px 48px */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
    /* 48px */
    margin-bottom: 60px;
}

.footer-content p {
    display: flex;
    font-size: 12px;
    font-weight: 400;
    color: white;
    align-items: center;
    /* centers icon with the text */
    gap: 4px;
    /* space around the heart */
}

.footer-content h4 {
    display: flex;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.footer-column p {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: var(--space-base);
    /* 16px */
}

.footer-column ul li a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom p {
    font-size: 12px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 24px;
    text-align: center;
    color: white;
}

.brand-description {
    font-size: 14px;
    line-height: auto;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.footer-logo img {
    height: 40px;
    /* default desktop size */
    width: auto;
    display: block;
}

.brand-logo {
    border-radius: 0 !important;
    /* Remove rounded corners */
    display: block;
    /* Prevent extra spacing under image */
    max-width: 100%;
    /* Keep responsive */
    height: auto;
    /* Maintain aspect ratio */
}

.tutorials-grid {
    display: grid;
  grid-template-columns: repeat(2, 1fr); /* ✅ Always 2 columns in desktop*/
  gap: 24px;
  margin-top: 24px;
  padding-bottom: var(--space-4xl);
  }
  
  .tutorial-card {
    background: #f9fafb;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .tutorial-card h2 {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .tutorial-card iframe {
    width: 100%;
    aspect-ratio: 16/9; /* keeps the video ratio */
    border-radius: 8px;
  }

/* Footer Section - Design Ends */



/* Responsive STARTS */

/* Mobile base adjustments */
@media (max-width: 768px) {

    /* Base container */
    .container {
        padding: 0 var(--container-padding-mobile);
        /* 16px mobile */
    }

    /* Ensure text doesn't overflow */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Hide desktop nav menu */
    .nav-menu {
        display: none;
    }

    /* Hero Section - Landing Page starts */
    .hero {
        padding: var(--space-6xl) 0 40px;
        /* 180px top, 64px bottom */
        text-align: center;
        margin-bottom: 10px;
        /* reduce gap to features */
    }

    .hero h1 {
        font-size: 1.7rem;
        line-height: 1.2;
        margin-bottom: var(--space-lg);
        /* 24px */
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: var(--space-lg);
        /* 24px */
        padding: 0 8px;
    }

    .hero-actions {
        align-items: center;
        gap: var(--space-base);
        /* 16px */
        margin-bottom: var(--space-xl);
        /* 32px */
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: var(--space-md) var(--space-lg);
        /* 12px 24px instead of 16px 32px */
        font-size: 13px;
    }

    .popover {
        width: 90%;
        /* responsive sizing */
    }

    .popover h4 {
        margin-bottom: 12px;
        font-size: 1rem;
        font-weight: 700;
    }

    .popover p {
        margin-bottom: 14px;
        font-size: 0.9rem;
    }

    /* Features in Landing page starts */
    .features {
        gap: var(--space-lg);
        /* 24px */
        margin-top: 0;
        padding: var(--space-base) 0;
        /* 16px vertical */

    }

    .feature span {
        display: none;
        /* hide labels on smaller screens */
    }

    /* Adjust order for mobile */
    .feature:nth-child(3) {
        order: 1;
    }

    /* Dashboard */
    .feature:nth-child(2) {
        order: 2;
    }

    /* Documents */
    .feature:nth-child(1) {
        order: 3;
    }

    /* Moodboards */
    .feature:nth-child(4) {
        order: 4;
    }

    /* Projects */
    .feature:nth-child(5) {
        order: 5;
    }

    /* To-Dos */

    /* Enlarge icons for better tap targets */
    .feature svg {
        width: 24px;
        /* bigger than default 22px */
        height: 24px;
    }


    /* Reviews section in landing page - "Trusted by ..." starts */
    .trusted-by {
        padding: var(--space-3xl) var(--space-base);
        /* 64px 16px */
        text-align: center;
    }

    .trusted-by h3 {
        font-size: 1.4rem;
        line-height: 1.3;
        white-space: wrap;
        overflow-wrap: normal;
        margin-bottom: var(--space-xl);
        /* 32px */

    }

    .logos {
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: var(--space-lg);
        /* 24px */
        opacity: 0.6;
        flex-wrap: nowrap;
        /* ✅ Prevent wrapping to second line */
        white-space: nowrap;
        /* ✅ Keep everything in one continuous row */
        animation: scroll-logos 15s linear infinite;
    }

    @keyframes scroll-logos {
        0% {
            transform: translateX(0);
        }

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

        /* full width for smaller screens */
    }


    /* Section2 starts- HarmoniOS by makemakaan. The modern OS to help your team do more in less time, everyday */
    .ai-section {
        padding: var(--space-2xl) var(--space-base);
        /* 48px 16px instead of 40px 16px */
        text-align: center;
    }

    .ai-header h2 {
        font-size: 1.4rem;
        margin-bottom: var(--space-lg);
        /* 24px */
    }

    .ai-header h3 {
        font-size: 1.2rem;
        margin-bottom: var(--space-lg);
        /* 24px */
    }

    .ai-description {
        font-size: 0.96rem;
        margin-bottom: var(--space-lg);
        /* 24px */

    }

    .feature-tab {
        font-size: 14px;
        /* slightly smaller text */
        padding: var(--space-sm) var(--space-md);
        /* 8px 16px instead of 12px 24px */
        flex: 1;
        /* allow buttons to shrink equally */
        text-align: center;
        /* keep text balanced */
        justify-content: center;
        /* center icon horizontally */
        gap: 0;
        /* no extra gap since no text */
    }

    .tab-text {
        display: none;
    }

    .tab-icon {
        display: inline;
        font-size: 20px;
        /* slightly larger so icon feels balanced */
        line-height: 1;
        /* remove extra vertical space */
    }

.tab-icon svg {
    width: 16px;   /* adjust icon size */
    height: 16px;
    stroke-width: 2; /* makes lines thicker/thinner */
}


    /* MacBook Mockup in HarmoniOS by makemakaan section starts*/
.MacBook-mockup-place2 {
    width: 122%;
    left: 50%;
    transform: translateX(-50%);
}



    /* Section3 starts - Feature lists - Simplify Operations & Maximise Productivity */

    /* Make horizontal swipes ours; keep vertical scroll for the page */
    .benefits-carousel,
    .benefits-track,
    .benefits-carousel .benefit-card {
        touch-action: pan-y;
        /* allow vertical scroll, we handle horizontal */
    }

    .ai-benefits h3 {
        /* MAKAAN COLOR SCHEME - feature lists title in section 2*/
        font-size: 1.4rem;
        margin: var(--space-2xl) 0 12px;
        /* 48px top, 32px bottom */

    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-lg);
        /* 24px */

    }

    .benefit-card {
        /*MAKAAN COLOR SCHEME - Feature cards in section 2*/
        flex: 0 0 100%;
        margin: 0 auto;
        background: linear-gradient(45deg, rgba(13, 148, 136, 0.2), rgba(36, 99, 235, 0.2));
        backdrop-filter: blur(10px);
        border: 1px solid white;
        border-radius: 16px;
        padding: var(--space-lg) var(--space-base);
        /* 24px 16px */
        text-align: center;
        transition: transform 0.3s;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .benefit-card h4 {
        /* MAKAAN COLOR SCHEME - Feature title in feature card - Section2 */
        font-size: 0.95rem;
    }

    .benefit-card p {
        /* MAKAAN COLOR SCHEME - Feature caption in feature card - Section2 */
        font-size: 0.95rem;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .benefits-carousel {
        position: relative;
        overflow: hidden;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        touch-action: pan-y;
        /* allow vertical scroll, but block horizontal so JS can capture swipe */

    }

    .benefits-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: auto;
        /* let flex handle it */
    }



    /* Dots */
    .benefits-dots {
        display: flex;
        justify-content: center;
        margin-top: 12px;
        gap: 6px;
    }

    .benefits-dots button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: none;
        background: #ccc;
        cursor: pointer;
        transition: background 0.3s;
    }

    .benefits-dots button.active {
        background: #0d9488;
    }

    /* Section 4 starts - Powerful without the complexity */

    .features-section {
        padding: var(--space-3xl) var(--space-base);
        /* 64px 16px */
        text-align: center;
    }

    .features-header h2 {
        font-size: 1.7rem;
        margin-bottom: var(--space-xl);
        /* 32px */
    }

    .features-description {
        font-size: 0.96rem;
        margin-bottom: var(--space-lg);
        /* 24px */
    }

    .features-nav .feature-tab {
        font-size: 14px;
        /* slightly smaller text */
        padding: var(--space-sm) var(--space-md);
        /* 8px 16px instead of 12px 24px */
        flex: 1;
        /* allow buttons to shrink equally */
        text-align: center;
        /* keep text balanced */
        justify-content: center;
        /* center icon horizontally */
        gap: 0;
        /* no extra gap since no text */
    }



    .feature-tab-text {
        display: none;
    }

    .feature-tab-icon {
        display: inline;
        font-size: 20px;
        /* slightly larger so icon feels balanced */
        line-height: 1;
        /* remove extra vertical space */
    }

    .feature-tab-icon svg{
    width: 16px;   /* adjust icon size */
    height: 16px;
    stroke-width: 2; /* makes lines thicker/thinner */
    }

    /* MacBook Mockup in Powerful without the complexity section starts*/
.MacBook-mockup-place3 {
    width: 122%;
    left: 50%;
    transform: translateX(-50%);
}

    /* Built for modern A&D teams Section */

    .privacy-section {
        padding: var(--space-3xl) var(--space-base);
    }

    .privacy-container h2 {
        /* MAKAAN COLOR SCHEME - Heading in 'Built for modern A&D teams section'*/
        font-size: 1.7rem;
        margin-bottom: var(--space-xl);
        /* 32px */
    }

    .privacy-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-lg);
        /* 24px */
    }

    .privacy-feature h3 {
        /* MAKAAN COLOR SCHEME - subheading under icons in 'Built for modern A&D teams section'*/
        font-size: 1.4rem;
    }


    /* Mobile Section starts */

    /* Default fallback (for unsupported browsers) */
    .features-wrapper {
        display: block;
        /* normal block so children stack */
    }

    /* Modern browsers that support it */
    @supports (display: contents) {
        .features-wrapper {
            display: contents;
        }
    }

    .mobile-section {
        padding: var(--space-3xl) var(--space-base);
    }

    .mobile-header h2 {
        font-size: 1.7rem;
        margin-bottom: var(--space-lg);
        /* 24px */
    }

    .mobile-header h3 {
        font-size: 1.1rem;
        margin-bottom: var(--space-lg);
        /* 24px */
    }

    .mobile-feature h4 {
        font-size: 1.1rem;
        margin-bottom: var(--space-base);
        /* 16px */
    }

    /* Hide desktop-only features in mobile */
    .mobile-features {
        display: none;
    }

    /* Show mobile-only features */
    .mobile-features-mobile-only {
        display: contents;
    }

    .mobile-content {
        display: grid;
        grid-template-columns: auto auto;
        /* phone mockup + icons side by side */
        grid-template-rows: auto auto;
        /* row1 = text, row2 = mockup + icons */
        justify-content: center;
        /* center grid as a whole */
        align-items: center;
        row-gap: var(--space-base);
        text-align: center;
        width: fit-content;
        /* shrink grid to its content */
        margin: 0 auto;
        /* center grid itself in the section */
    }

    /* Row 1: feature carousel text above mockup */
    .feature-carousel {
        grid-column: 1 / span 2;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* center horizontally */
        justify-content: center;
        text-align: center;
        transform: translateX(45px);
        /* Move left by 10px */

    }

    .feature-carousel .feature-content {
        display: none;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .feature-carousel .feature-content.active {
        display: block;
        opacity: 1;
        font-size: 0.96rem;
        margin-bottom: var(--space-lg);
        /* 24px */
    }

    /* Row 2: iPhone mockup */
    .mobile-demo {
        grid-column: 1;
        grid-row: 2;
        display: flex;
        /* use flex to center the image inside */
        justify-content: center;
        align-items: center;
        transform: translateX(-30px);
        /* Move left by 30px */
    }

    .Iphone-mockup {
        max-width: 300px;
        margin: 0 auto;
    }

    .Iphone-frame {
        width: 180%;
        transform: translateX(-14%);
    }

    .Iphone-screen img {
        width: 82%;
        height: 116%;
        object-fit: cover;  /* ✅ keeps proportions without distortion */
        border-radius: 24px;
        align-items: center;        /* ✅ center vertically */
        justify-content: center;    /* ✅ center horizontally */
        transform: translateX(23.3%); /* move 10% to the right */
    
    }

    /* Row 2: feature icons on right */
    .feature-icons {
        grid-column: 2;
        grid-row: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* horizontal centering */
        justify-content: center;
        /* vertical centering */
        gap: var(--space-base);
        transform: translateX(-40px);
        /* Move left by 40px */
    }

    .feature-icons .feature-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #e5e7eb;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .feature-icons .feature-icon.active {
        background: linear-gradient(45deg, #5fd0c3, #6fa3ff);
        color: #fff;
    }



    /* Feature texts (carousel) */
    .feature-carousel {
        grid-column: 1;
        grid-row: 1;
        /* same cell as the mockup -> layered */
        place-self: end center;
        /* bottom-center of the cell */
        text-align: center;
        margin-bottom: var(--space-base);
        z-index: 2;
        /* above the mockup */
    }

    .feature-carousel .feature-content {
        display: none;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .feature-carousel .feature-content.active {
        display: block;
        opacity: 1;
    }


    /* Success metrics section starts -  Studio Success Simplified */

    .community-section {
        flex-direction: column;
        padding: var(--space-3xl) var(--space-base);
    }

    .community-container h2 {
        /*MAKAAN COLOR SCHEME - Heading font and color in Studio Success Simplified*/
        font-size: 1.5rem;
        margin-bottom: var(--space-xl);
        /* 32px */

    }

    .stat-label {
        /*MAKAAN COLOR SCHEME - Metrics caption font and color in Studio Success Simplified*/
        font-size: 1.1rem;
        gap: var(--space-lg);
        /* 24px */
    }

    .stat-number {
        /*MAKAAN COLOR SCHEME - Metrics heading font and color in Studio Success Simplified*/
        font-size: 3rem;
    }

    .plus {
        /*MAKAAN COLOR SCHEME - '%' font and color in Studio Success Simplified*/
        font-size: 1.5rem;
    }

    .stat-number .star {
        /*MAKAAN COLOR SCHEME - '*' font and color in Studio Success Simplified*/
        font-size: 1.5rem;
    }

    .stat-number .unit {
        /*MAKAAN COLOR SCHEME - hrs/wk and /yr font and color in Studio Success Simplified*/
        font-size: 1.5rem;
    }


    /* Section 8 starts - About Us - Designed by and for the architecture & design community */
    .community-hero {
        position: relative;
        /* so absolute children are positioned to this */
        padding: var(--space-3xl) 0 10px;
        text-align: center;
    }

    .community-text h1 {
        font-size: 1.7rem;
        margin-bottom: var(--space-lg);
        /* 24px */
    }

    .community-text p {
        font-size: 1.1rem;
        margin-bottom: var(--space-lg);
        /* 24px */
    }

    .community-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        /* allows background positioning inside */
        gap: var(--space-2xl);
        /* 48px */
    }

    .floating-avatars {
        position: absolute;
        margin-bottom: -100px;
        /* overlaps into text area */
        opacity: 0.42;
        z-index: 0;
        width: 80%;
        height: 80%;
    }

    .avatar {
        width: 50px;
        height: 50px;
        font-size: 0.6rem;
        /* smaller text inside avatars */
    }

    .community-text {
        position: relative;
        z-index: 1;
        /* keep text above animation */
    }

    .talktofounder-btn {
        margin-top: 16px;
    }

    /* Final CTA Section starts - Partnering closely with only 100 A&D firms*/
    .final-cta {
        padding: var(--space-3xl) var(--space-base);
    }

    .cta-container h1 {
        font-size: 1.7rem;
        margin-bottom: var(--space-lg);
        /* 24px */
    }

    .cta-container p {
        font-size: 1.2rem;
        margin-bottom: var(--space-xl);
        /* 32px */
    }

    /* Pricing - Mobile Optimized */

    .pricing-section {
        padding: var(--space-3xl) var(--space-base);
    }

    .pricing-title {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }

    .pricing-subtitle {
        font-size: 1rem;
        margin-bottom: var(--space-xl);
        /* 32px */
    }

    .pricing-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-lg);
        /* 24px */
    }

    /* Hide yearly by default */
    #mobileYearly {
        display: none;
    }

    .pricing-card.highlight {
        order: 1;
        /* swap if needed on toggle */
    }

    /* Show toggle wrapper */
    .mobile-pricing-toggle {
        display: block;
        margin-bottom: 16px;
    }

    .toggle-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }


    /* Switch with labels */
    .switch-label {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 240px;
        height: 40px;
        background: #f1f5f9;
        border-radius: 20px;
        border: 1px solid #0d9488;
        /* ✅ border */
        cursor: pointer;
        font-size: 12px;
        font-weight: 500;
        color: #333;
        overflow: hidden;
        white-space: nowrap;
        /* ⬅️ prevent text wrapping */
    }

    /* Options inside */
    .option {
        flex: 1;
        text-align: center;
        z-index: 2;
        transition: color 0.3s ease;
    }

    /* Hide checkbox */
    #pricingToggle {
        display: none;
    }

    /* Highlight background (slider effect) */
    .switch-label::before {
        content: "";
        position: absolute;
        top: 2px;
        left: 2px;
        width: calc(50% - 2px);
        height: calc(100% - 4px);
        background: #66d1c7;
        /* active highlight */
        border-radius: 20px;
        transition: transform 0.3s ease;
        z-index: 1;
    }

    /* Default: Quarterly active */
    .option-left {
        color: #fff;
    }

    .option-right {
        color: #333;
    }

    /* Checked: Yearly active */
    #pricingToggle:checked+.switch-label::before {
        transform: translateX(100%);
    }

    #pricingToggle:checked+.switch-label .option-left {
        color: #333;
    }

    #pricingToggle:checked+.switch-label .option-right {
        color: #fff;
    }

    .pricing-card {
        width: 85%;
        /* fill available width */
        max-width: 375px;
        /* optional: keep card from getting too wide */
        padding: var(--space-lg) var(--space-base);
        /* 24px 16px - no change needed */
        min-height: auto;
    }

    .pricing-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .price {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }

    .price .currency {
        font-size: 1.2rem;
    }

    .price .per {
        font-size: 1rem;
    }

    .note {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .features li {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .pricing-cta-buttons {
        flex-direction: column;
        gap: var(--space-base);
        /* 16px */
        margin-bottom: var(--space-xl);
        /* 32px */
    }

    .pricing-btn-primary,
    .pricing-btn-secondary {
        font-size: 14px;
        padding: 10px 0;
    }

    .price-calculator {
        display: flex;
        justify-content: center;
        /* center the whole row */
        align-items: center;
        /* vertical alignment */
        gap: 8px;
        /* spacing between label, input, button */
        flex-wrap: nowrap;
        /* keep everything on the same line */
    }


    .price-calculator label {
        font-size: 0.9rem;
        margin: 0;
        /* remove default spacing */
    }

    .price-calculator input {
        width: 80px;
        /* fixed width for mobile */
        padding: 6px 10px;
        font-size: 0.9rem;
        text-align: center;
    }

    .price-calculator button {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .pricing-breakdown .price {
        font-size: 1.7rem;
    }

    .pricing-breakdown .note {
        font-size: 0.8rem;
    }

    .tutorials-grid {
        grid-template-columns: repeat(1, 1fr); /* ✅ Always 1 column in mobile */
        }
    
    .tutorial-card {
        padding: 12px;
    }
          
    .tutorial-card h2 {
         font-size: 0.95rem;
    }

/* FOOTER SECTION */
    
.footer {
    padding: var(--space-3xl) var(--space-base) var(--space-xl);
    /* 64px 16px 32px */
}

.footer-brand {
    grid-column: 1 / -1;
    align-items: center;   /* center horizontally */
    text-align: center;    /* center text inside */
}

.footer-content {
    display: grid;
    grid-template-areas:
        "brand brand"
        "quick useful";
    gap: var(--space-xl);
    /* 32px */
    align-items: center;   /* center horizontally */
    text-align: center;    /* center text inside */
    grid-template-columns: 1fr 1fr;
}

.footer-content>.footer-brand {
    grid-area: brand;
    /* or center if you prefer */
}

/* keep each column a normal block */
.footer-content>.footer-column {
    display: block;
    margin: 0;
}

/* place the two columns */
.footer-content>.footer-column:nth-child(2) {
    grid-area: quick;
}

.footer-content>.footer-column:nth-child(3) {
    grid-area: useful;
}

.footer-content p {
    display: flex;
    font-size: 12px;
    font-weight: 400;
    color: white;
    align-items: center;
    /* centers icon with the text */
    gap: 4px;
    /* space around the heart */
}

.footer-content h4 {
    display: flex;
    align-items: center;   /* center horizontally */
    text-align: center;    /* center text inside */
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.footer-logo {
    justify-content: center;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.4;
}

.footer-column h3 {
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 14px;
}

.footer-bottom p {
    font-size: 12px;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 24px;

}

.footer-logo img {
    height: 32px;
    justify-content: center;

}

}
    /*single column footer for mobile*/
    @media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "quick"
            "useful";
            gap: 24px;
    }
}    


/*MOBILE OPTIMISATION*/
/* Ensure no content overflows */
body,
html {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding-mobile);
    /* 16px mobile */
    /* smaller padding for mobile */
}

/*MOBILE OPTIMISATION*/

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    /* 20px desktop */
}
