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

body {
    font-family: 'Open Sauce', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    background: #0a0015;
    color: #F5F5F5;
}

/* Brand Colours */
:root {
    --storm-blue: #3F00CD;
    --bolt-lime: #74F7D0;
    --haze-purple: #B77BE5;
    --cloud-white: #F5F5F5;
    --smoke-grey: #3D3D3D;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 5%;
    background: rgba(63, 0, 205, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 1.2rem 5%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    width: 130px;
    height: 120px;
    position: relative;
    transition: all 0.3s ease;
}

header.scrolled .logo-container {
    width: 160px;
    height: 80px;
}

.logo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease;
}

.logo-stacked {
    opacity: 1;
}

.logo-inline {
    opacity: 0;
}

header.scrolled .logo-stacked {
    opacity: 0;
}

header.scrolled .logo-inline {
    opacity: 1;
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: #74F7D0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #F5F5F5;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #74F7D0;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 350px;
        height: 100vh;
        background: rgba(63, 0, 205, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.4s ease;
        z-index: 999;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    nav.active {
        right: 0;
    }

    nav a {
        font-size: 1.8rem;
        color: #74F7D0;
    }

    header.on-lime-section .hamburger span {
        background: #3F00CD;
    }

    header.on-lime-section nav {
        background: rgba(116, 247, 208, 0.98);
    }

    header.on-lime-section nav a {
        color: #3F00CD;
    }

    header.on-grey-section .hamburger span {
        background: #F5F5F5;
    }
    
    header.on-haze-section .hamburger span {
        background: #3F00CD;
    }
    
    header.on-haze-section nav {
        background: rgba(183, 123, 229, 0.98);
    }
    
    header.on-haze-section nav a {
        color: #3F00CD;
    }

    header.on-grey-section nav {
        background: rgba(61, 61, 61, 0.98);
    }
    
    header.on-grey-section nav a {
        color: #74F7D0;
    }
    
    header.on-grey-section nav a:hover {
        color: #3F00CD;
    }
}

/* Nav link colour variations for different sections */
header.on-lime-section nav a {
    color: #3F00CD;
}

header.on-lime-section nav a:hover {
    color: #3D3D3D;
}

header.on-haze-section nav a {
    color: #3F00CD;
}

header.on-haze-section nav a:hover {
    color: #F5F5F5;
}

header.on-grey-section nav a {
    color: #F5F5F5;
}

header.on-grey-section nav a:hover {
    color: #3F00CD;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #3F00CD;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-scrolling-text {
    position: absolute;
    top: 26vh;
    left: 0;
    width: 200%;
    font-size: 8rem;
    font-weight: 900;
    color: #74F7D0;
    line-height: 1;
    white-space: nowrap;
    animation: scrollText 40s linear infinite;
    z-index: 1;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.hero-phone-container {
    position: absolute;
    bottom: 0;
    left: 6%;
    width: 420px;
    height: 90vh;
    display: flex;
    align-items: flex-end;
    z-index: 2;
}

.hero-phone-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-phone-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.hero-content {
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    z-index: 3;
    text-align: center;
    margin-left: 14%;
}

.hero-tagline {
    font-size: 1.6rem;
    color: #F5F5F5;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.hero-tagline .box-underline {
    text-decoration: none;
    position: relative;
    display: inline;
}

.hero-tagline .box-underline::before,
.hero-tagline .box-underline::after {
    content: '';
    position: absolute;
    left: -5px;
    right: -5px;
    height: 3px;
    background: #74F7D0;
}

.hero-tagline .box-underline::before {
    top: 2px;
}

.hero-tagline .box-underline::after {
    bottom: -0px;
}

.hero-description {
    font-size: 1.1rem;
    color: #F5F5F5;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #74F7D0;
    color: #3F00CD;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 3px solid #74F7D0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: transparent;
    color: #74F7D0;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(116, 247, 208, 0.3);
}

/* Responsive breakpoints for hero */
@media (max-width: 1600px) {
    .hero-scrolling-text {
        font-size: 7rem;
        top: 28vh;
    }
    
    .hero-phone-container {
        width: 380px;
        height: 88vh;
        left: 5%;
    }
    
    .hero-content {
        margin-left: 12%;
        top: 61%;
        max-width: 580px;
    }
}

@media (max-width: 1400px) {
    .hero-scrolling-text {
        font-size: 6rem;
        top: 30vh;
    }
    
    .hero-content {
        max-width: 520px;
        margin-left: 10%;
        top: 60%;
    }
    
    .hero-phone-container {
        width: 350px;
        height: 86vh;
    }
}

@media (max-width: 1288px) {
    .hero-scrolling-text {
        font-size: 5.8rem;
        top: 35vh;
    }
    
    .hero-content {
        max-width: 650px;
        margin-left: 20%;
        top: 64%;
    }
    
    .hero-phone-container {
        width: 340px;
        height: 85vh;
    }
}

@media (max-width: 1240px) {
    .hero-scrolling-text {
        font-size: 5.5rem;
        top: 36vh;
    }
    
    .hero-content {
        max-width: 630px;
        margin-left: 19%;
        top: 64%;
    }
    
    .hero-phone-container {
        width: 330px;
        height: 85vh;
    }
}

@media (max-width: 1200px) {
    .hero-scrolling-text {
        font-size: 5rem;
        top: 37vh;
    }
    
    .hero-content {
        max-width: 610px;
        margin-left: 18%;
        top: 63%;
    }
    
    .hero-phone-container {
        width: 320px;
        left: 4%;
        height: 84vh;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 1055px) {
    .hero-scrolling-text {
        font-size: 4.8rem;
        top: 38vh;
    }
    
    .hero-content {
        max-width: 590px;
        margin-left: 17%;
        top: 62%;
    }
    
    .hero-phone-container {
        width: 310px;
        height: 83vh;
    }
}

@media (max-width: 1000px) {
    .hero-scrolling-text {
        font-size: 4.5rem;
        top: 35vh;
    }
    
    .hero-content {
        max-width: 90%;
        margin-left: 8%;
        top: 59%;
    }
    
    .hero-phone-container {
        width: 280px;
        height: 82vh;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
}

@media (max-width: 950px) {
    .hero-scrolling-text {
        font-size: 4.2rem;
        top: 42vh;
    }
    
    .hero-content {
        max-width: 85%;
        margin-left: 10%;
        top: 60%;
    }
    
    .hero-phone-container {
        width: 260px;
        height: 80vh;
    }
}

@media (max-width: 900px) {
    .hero-scrolling-text {
        font-size: 4.1rem;
        top: 48vh;
    }
    
    .hero-content {
        max-width: 82%;
        margin-left: 11%;
        top: 61%;
    }
    
    .hero-phone-container {
        width: 255px;
        height: 79.5vh;
    }
}

@media (max-width: 889px) {
    .hero-scrolling-text {
        font-size: 4rem;
        top: 50vh;
    }
    
    .hero-content {
        max-width: 80%;
        margin-left: 12%;
        top: 61%;
    }
    
    .hero-phone-container {
        width: 250px;
        height: 79vh;
    }
}

@media (max-width: 840px) {
    .hero-scrolling-text {
        font-size: 3.8rem;
        top: 40vh;
    }
    
    .hero-content {
        max-width: 80%;
        margin-left: 15%;
        top: 62%;
    }
    
    .hero-phone-container {
        width: 240px;
        height: 78vh;
    }
}

/* Mobile/Tablet stacking layout */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 8rem;
    }
    
    .hero-scrolling-text {
        position: relative;
        top: auto;
        font-size: 3.5rem;
        margin-top: 2rem;
        margin-bottom: 0;
        order: 1;
    }
    
    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 90%;
        margin: 3rem auto 2rem;
        order: 2;
    }
    
    .hero-phone-container {
        position: relative;
        bottom: auto;
        left: auto;
        width: 65%;
        max-width: 320px;
        height: auto;
        margin: 0 auto;
        order: 3;
    }
    
    .hero-phone-placeholder img {
        width: 100%;
        height: auto;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
}

/* Landscape mobile - mini desktop layout */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 600px) {
    .hero {
        display: block;
        padding-top: 0;
    }
    
    .hero-scrolling-text {
        position: absolute;
        top: 26vh;
        font-size: 3rem;
        margin-top: 0;
    }
    
    .hero-phone-container {
        position: absolute;
        left: 5%;
        width: 200px;
        height: 70vh;
        bottom: 0;
    }

    .hero-phone-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .hero-content {
        position: absolute;
        left: 50%;
        top: 60%;
        transform: translate(-50%, -50%);
        max-width: 45%;
        margin: 0;
        margin-left: 8%;
    }
}

/* Section Base */
section {
    padding: 6rem 8%;
    transition: background 0.5s ease;
}

.section-purple {
    background: #3F00CD;
    color: #F5F5F5;
}

.section-lime {
    background: #74F7D0;
    color: #3D3D3D;
}

.section-haze {
    background: #B77BE5;
    color: #F5F5F5;
}

.section-grey {
    background: #3D3D3D;
    color: #F5F5F5;
}

h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.section-intro {
    max-width: 1000px;
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

/* Who We Are Section */
.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.brand-story {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.brand-story h3 {
    color: #74F7D0;
    margin-bottom: 1.5rem;
}

.media-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.media-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Mission Vision Values */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.mv-card {
    background: rgba(63, 0, 205, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(63, 0, 205, 0.3);
}

.mv-card h3 {
    color: #3F00CD;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.value-card {
    background: rgba(63, 0, 205, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 2px solid rgba(63, 0, 205, 0.2);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    color: #3F00CD;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* The Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.problem-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.problem-card h3 {
    color: #74F7D0;
    margin-bottom: 1.5rem;
}

.stat-highlight {
    font-size: 3rem;
    font-weight: 900;
    color: #74F7D0;
    display: block;
    margin: 1rem 0;
}

/* Product Showcase */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.product-image {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    min-height: 500px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.product-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.product-features {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(116, 247, 208, 0.3);
}

.product-features h3 {
    color: #74F7D0;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li strong {
    color: #74F7D0;
}

/* Team Section */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.founder-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.founder-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #74F7D0 0%, #B77BE5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 0;
    overflow: hidden;
}

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

.founder-info {
    padding: 2rem;
}

.founder-info h3 {
    color: #3F00CD;
    margin-bottom: 0.5rem;
}

.founder-info h3 .founder-name {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.founder-info h3 .founder-qualification {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-style: italic;
}

.founder-role {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    background: #3F00CD;
    padding: 6rem 8%;
}

.contact-container {
    max-width: 950px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h2 {
    color: #74F7D0;
    margin-bottom: 1rem;
}

.contact-intro p {
    color: #F5F5F5;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(116, 247, 208, 0.2);
    backdrop-filter: blur(10px);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1.1rem;
}

.form-row label {
    color: #F5F5F5;
}

.form-row input,
.form-row select {
    flex: 0 0 auto;
    min-width: 200px;
    padding: 0.8rem 1rem;
    border: none;
    border-bottom: 2px solid rgba(116, 247, 208, 0.3);
    background: transparent;
    color: #F5F5F5;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-bottom-color: #74F7D0;
}

.form-row select {
    cursor: pointer;
}

.form-row select option {
    background: #1a0050;
    color: #F5F5F5;
}

.full-width-input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-bottom: 2px solid rgba(116, 247, 208, 0.3);
    background: transparent;
    color: #F5F5F5;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.full-width-input:focus {
    outline: none;
    border-bottom-color: #74F7D0;
}

.full-width-input::placeholder {
    color: rgba(245, 245, 245, 0.5);
}

.message-box {
    width: 100%;
    min-height: 150px;
    padding: 1rem;
    border: 2px solid rgba(116, 247, 208, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #F5F5F5;
    font-size: 1rem;
    resize: vertical;
    margin-bottom: 2rem;
    font-family: inherit;
}

.message-box:focus {
    outline: none;
    border-color: #74F7D0;
}

.message-box::placeholder {
    color: rgba(245, 245, 245, 0.5);
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-container label {
    color: #F5F5F5;
    font-size: 0.95rem;
}

.checkbox-container a {
    color: #74F7D0;
    text-decoration: underline;
}

.submit-btn {
    display: block;
    margin: 0 auto;
    padding: 1.2rem 3.5rem;
    background: #74F7D0;
    color: #3F00CD;
    font-size: 1.1rem;
    font-weight: 700;
    border: 3px solid #74F7D0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: transparent;
    color: #74F7D0;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #74F7D0;
    padding: 3rem 8%;
    color: #3D3D3D;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.footer-logo {
    width: 100px;
    height: 100px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-slogan {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3F00CD;
    margin-bottom: 0.5rem;
    text-align: center;
}

.footer-text {
    font-size: 0.85rem;
    color: #3F00CD;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #3F00CD;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-links a:hover {
    color: #3D3D3D;
}

/* Responsive */
@media (max-width: 1024px) {
    .problem-grid,
    .values-grid,
    .founders-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid,
    .who-we-are-content,
    .product-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 7rem;
    }

    .hero-scrolling-text {
        font-size: 2.5rem;
        margin-top: 1rem;
    }

    .hero-content {
        margin-top: 2rem;
        padding: 0 5%;
    }

    .hero-phone-container {
        width: 70%;
        max-width: 280px;
        margin-top: 2rem;
    }

    .hero-tagline {
        font-size: 1.15rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 0.95rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    section {
        padding: 4rem 5%;
    }

    .form-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-row input,
    .form-row select {
        width: 100%;
        min-width: 100%;
    }

    .logo-container {
        width: 70px;
        height: 65px;
    }

    header.scrolled .logo-container {
        width: 80px;
        height: 45px;
    }

    .footer-content {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1.5rem 5%;
    }
    
    .hero {
        padding-top: 6rem;
    }
    
    .hero-scrolling-text {
        font-size: 2rem;
    }

    .hero-content {
        margin-top: 1.5rem;
    }

    .hero-phone-container {
        width: 75%;
        max-width: 240px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
    }
    
    .logo-container {
        width: 60px;
        height: 55px;
    }

    header.scrolled .logo-container {
        width: 70px;
        height: 40px;
    }

    .footer-content {
        flex-direction: column;
    }
}

/* Landscape mobile specific fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}