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

body {
    background: #000;
    min-height: 100vh;
}

/* Header Styles */
.header {
    position: relative;
    height: 177px;
    width: 100%;
    background: #000;
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

/* Mobile Hamburger Menu */
.hamburger-menu {
    display: none;
    position: absolute;
    right: 20px;
    top: 30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger-line {
    width: 30px;
    height: 1px;
    background: #fff;
    margin: 8px 0;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    background: #000;
    z-index: 999;
    padding-top: 100px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-bottom: 8px;
}

.mobile-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-btn-text {
    color: #fff;
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

/* Header Line */
.header-line {
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #8F8F8F;
}

.logo {
    position: absolute;
    left: 187px;
    top: 30px;
    width: 53px;
    height: 82px;
    flex-shrink: 0;
    aspect-ratio: 53/82;
    cursor: pointer;
    transition: transform 0.2s ease;
}

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

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

/* Connect Button Styles */
.connect-btn {
    position: absolute;
    left: 1035px;
    top: 45px;
    width: 200px;
    height: 50px;
    flex-shrink: 0;
    cursor: pointer;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connect-btn svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* About Button Styles */
.about-btn {
    position: absolute;
    left: 300px;
    top: 59px;
    width: 87px;
    height: 22px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Products Button Styles */
.products-btn {
    position: absolute;
    left: 680px;
    top: 59px;
    width: 87px;
    height: 22px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Connect CTA Button Styles */
.connect-cta-btn {
    position: absolute;
    left: 875px;
    top: 59px;
    width: 87px;
    height: 22px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Approach Button Styles */
.approach-btn {
    position: absolute;
    left: 480px;
    top: 59px;
    width: 87px;
    height: 22px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-text {
    position: relative;
    z-index: 1;
    color: #000;
    text-align: center;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 22px;
    pointer-events: none;
}

.about-btn .btn-text {
    color: #FFF;
}

.products-btn .btn-text {
    color: #FFF;
}

.approach-btn .btn-text {
    color: #FFF;
}

.connect-cta-btn .btn-text {
    color: #FFF;
}

.connect-btn:hover,
.about-btn:hover,
.products-btn:hover,
.approach-btn:hover,
.connect-cta-btn:hover {
    transform: scale(1.02);
}

/* About Section Styles */
.about-section {
    position: absolute;
    left: 102px;
    top: 175px;
    width: 835px;
    height: 240px;
    flex-shrink: 0;
}

.about-title {
    text-align: center;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 800;
    line-height: 120px;
    letter-spacing: -15px;
    background: linear-gradient(89deg, #FFF 21.13%, #999 72.1%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    padding: 0;
}

.about-title .spaced-letter {
    margin-left: 2em;
}

/* Personalised Application Image Styles */
.personalised-image {
    position: absolute;
    left: 876px;
    top: 0px;
    width: 279px;
    height: 224px;
    flex-shrink: 0;
    aspect-ratio: 71/57;
}

.personalised-image img {
    width: 279px;
    height: 224px;
    object-fit: contain;
}

/* Description Section Styles */
.description-section {
    position: absolute;
    left: 50%;
    top: 450px;
    width: 1090px;
    height: 326px;
    flex-shrink: 0;
    transform: translateX(-50%);
}

.description-content {
    text-align: center;
}

/* Hide mobile description on desktop */
.mobile-description {
    display: none;
}

/* Hide mobile approach content on desktop */
.mobile-description .approach-content {
    display: none;
}

.main-description {
    color: #FFF;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 35px;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
}

.tagline {
    color: #FFF;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    line-height: 35px;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
}

.personal-touch {
    color: #FF7A29;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 35px;
    letter-spacing: 0.5px;
    margin: 0;
}

.highlight {
    color: #FF7A29;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 35px;
    letter-spacing: 0.5px;
}

.extra-bold {
    font-weight: 800;
}

.eight-answers-text {
    font-size: 20px;
}

.contact-button-container {
    margin-top: 35px;
    text-align: center;
}

.contact-button {
    background: #FF7A29;
    color: #FFF;
    border: none;
    padding: 15px 40px;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-button:hover {
    background: #E65A1A;
    transform: scale(1.05);
}

/* Geometric Shapes Section */
.geometric-shapes {
    position: absolute;
    left: 50%;
    top: 1270px;
    width: 1066px;
    height: 483px;
    flex-shrink: 0;
    transform: translateX(-50%);
}

.shapes-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: #181818;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.shape {
    position: absolute;
    flex-shrink: 0;
}

.shape-1 {
    top: 0;
    left: 0;
}

.shape-2 {
    top: 0;
    right: 0;
}

.shape-3 {
    bottom: 0;
    left: 0;
}

.shape-4 {
    bottom: 0;
    right: 0;
}

.shape svg {
    width: 100%;
    height: 100%;
}

.shapes-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 1066px;
    height: 479px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    margin-left: -17px;
}

.text-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.pub-text {
    color: #FF9F64;
    text-align: center;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 900;
    line-height: 120px;
    letter-spacing: -15px;
}

.lic-text {
    color: #FF7A29;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 900;
    line-height: 120px;
    letter-spacing: -15px;
}

.products-text {
    color: #000;
    text-align: center;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 900;
    line-height: 120px;
    letter-spacing: -15px;
    margin-left: -1.5px;
    margin-right: 0px;
}

.applications-white {
    color: #FFF;
}

/* Suggestions Button Styles */
.suggestions-btn-container {
    position: absolute;
    left: 50%;
    top: 1815px;
    transform: translateX(-50%);
    text-align: center;
}

.suggestions-btn {
    background: #FF7A29;
    color: #FFF;
    border: none;
    padding: 15px 40px;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.suggestions-btn:hover {
    background: #E65A1A;
    transform: scale(1.05);
}

/* Connect Section Styles */
.connect-section {
    position: absolute;
    left: 50%;
    top: 1900px;
    width: 1090px;
    height: 300px;
    flex-shrink: 0;
    transform: translateX(-50%);
}

.connect-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.connect-text {
    flex: 1;
}

.connect-title {
    color: #FFF;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px;
    letter-spacing: -1px;
    margin: 0 0 20px 0;
}

.connect-subtitle {
    color: #FFF;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px;
    letter-spacing: -1px;
    margin: 0 0 20px 0;
}

.connect-email {
    color: #FFF;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px;
    letter-spacing: -1px;
    margin: 0;
}

.email-link {
    color: #FFF;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px;
    letter-spacing: -1px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-color: #FF7A29;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.connect-image {
    flex: 0 0 auto;
    margin-left: 40px;
}

.connect-image img {
    width: 400px;
    height: 400px;
    object-fit: contain;
}

/* Approach Section Styles */
.approach-section {
    position: absolute;
    left: 50%;
    top: 865px;
    width: 1090px;
    height: 200px;
    flex-shrink: 0;
    transform: translateX(-50%);
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.approach-text {
    color: #FFF;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 800;
    line-height: 60px;
    letter-spacing: -2px;
}

.approach-text.left {
    text-align: left;
}

.approach-text.right {
    text-align: right;
}

/* Footer Styles */
.footer {
    position: absolute;
    left: 0;
    top: 2250px;
    width: 100%;
    height: 100px;
}

.footer-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #8F8F8F;
}

.footer-text {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.footer-text p {
    color: #8F8F8F;
    font-family: "serif", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Responsive Design - Tablet and Mobile */

/* Tablet Styles (768px - 1024px) - Using Phone Layout */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Reset body for tablet flow layout (same as phone) */
    body {
        background: #000;
        min-height: 100vh;
        position: relative;
    }
    
    /* Header adjustments - same as phone */
    .header {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        position: relative;
        width: 100%;
        background: #000;
    }
    
    .header-line {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        height: 1px;
        background: #8F8F8F;
    }
    
    /* Hide desktop navigation */
    .desktop-nav {
        display: none;
    }
    
    /* Show hamburger menu */
    .hamburger-menu {
        display: block;
        position: static;
        order: 3;
        width: 30px;
        height: 30px;
    }
    
    /* Show mobile menu */
    .mobile-menu {
        display: block;
    }
    
    /* Logo positioning - same as phone */
    .logo {
        position: static;
        order: 1;
        width: 35px;
        height: 55px;
        margin: 0;
    }
    
    /* Contact button positioning - same as phone */
    .connect-btn {
        position: static;
        order: 2;
        width: 140px;
        height: 40px;
        margin: 0;
        transform: none;
    }
    
    .btn-text {
        font-size: 14px;
        line-height: 18px;
    }
    
    /* About section - same layout as phone */
    .about-section {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 40px 20px;
        margin-top: -5px;
    }
    
    .about-title {
        font-size: 40px;
        line-height: 50px;
        letter-spacing: -6px;
        text-align: center;
        order: 2;
        margin: 0;
    }
    
    .personalised-image {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 200px;
        height: 160px;
        order: 1;
        margin: 0;
    }
    
    /* Move description content into about section - same as phone */
    .description-content {
        order: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
        width: 100%;
    }
    
    .contact-button-container {
        order: 4;
        margin: 0;
    }
    
    .personalised-image img {
        width: 200px;
        height: 160px;
    }
    
    /* Description section - hide on tablet since content moved to about section */
    .description-section {
        display: none;
    }
    
    /* Show mobile description content - same as phone */
    .mobile-description {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
        width: 100%;
        order: 3;
    }
    
    .mobile-description .main-description {
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        margin: 0;
    }
    
    .mobile-description .contact-button-container {
        order: 4;
        margin: 0;
    }
    
    .mobile-description .approach-content {
        display: flex !important;
        flex-direction: column;
        gap: 15px;
        order: 5;
        margin: 0;
        margin-bottom: 20px;
    }
    
    .mobile-description .approach-content .approach-text {
        font-size: 24px;
        line-height: 30px;
        text-align: center;
        margin: 0;
    }
    
    .tagline {
        font-size: 18px;
        line-height: 26px;
    }
    
    .personal-touch {
        font-size: 16px;
        line-height: 26px;
        margin-top: -20px;
    }
    
    .highlight {
        font-size: 16px;
        line-height: 26px;
    }
    
    .eight-answers-text {
        font-size: 16px;
    }
    
    .contact-button {
        padding: 12px 30px;
        font-size: 16px;
        margin: 0;
    }
    
    .contact-button-container {
        order: 4;
        margin: 0;
    }
    
    /* Approach section - hide on tablet since content moved to about section */
    .approach-section {
        display: none;
    }
    
    .approach-content {
        gap: 25px;
    }
    
    .approach-text {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -0.5px;
        text-align: center !important;
    }
    
    .text-row {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .pub-text {
        font-size: 40px;
        line-height: 50px;
        letter-spacing: -6px;
        margin-left: -12px;
    }
    
    .lic-text {
        font-size: 40px;
        line-height: 50px;
        letter-spacing: -6px;
    }
    
    .products-text {
        font-size: 40px;
        line-height: 50px;
        letter-spacing: -6px;
        margin-left: -12px;
    }
    
    /* Geometric shapes section - hide on tablet */
    .geometric-shapes {
        display: none;
    }
    
    .shapes-container {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 15px;
        background: #181818;
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
        overflow: hidden;
    }
    
    .shapes-text-overlay {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        width: 100%;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 2;
        margin-left: 0;
    }
    
    /* Suggestions button - same as phone */
    .suggestions-btn-container {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        text-align: center;
        padding: 20px;
        margin: -17px 0 40px 0;
        margin-left: 0;
    }
    
    .suggestions-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    /* Connect section - hide on tablet since we're adding email to popup instead */
    .connect-section {
        display: none;
    }
    
    .connect-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    
    .connect-title,
    .connect-subtitle,
    .connect-email {
        font-size: 16px;
        line-height: 28px;
    }
    
    .email-link {
        font-size: 16px;
        line-height: 28px;
    }
    
    .connect-image {
        margin-left: 0;
        margin-top: -25px;
    }
    
    .connect-image img {
        width: 250px;
        height: 250px;
    }
    
    /* Footer - same as phone */
    .footer {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        height: 80px;
        padding: 20px;
        margin-top: -10px;
    }
    
    .footer-text {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        text-align: center;
    }
    
    .footer-text p {
        font-size: 14px;
        line-height: 20px;
    }

}

/* Mobile Styles (up to 767px) */
@media (max-width: 767px) {
    /* Reset body for mobile flow layout */
    body {
        background: #000;
        min-height: 100vh;
        position: relative;
    }
    
    /* Header adjustments */
    .header {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        position: relative;
        width: 100%;
        background: #000;
    }
    
    .header-line {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        height: 1px;
        background: #8F8F8F;
    }
    
    /* Hide desktop navigation */
    .desktop-nav {
        display: none;
    }
    
    /* Show hamburger menu */
    .hamburger-menu {
        display: block;
        position: static;
        order: 3;
        width: 30px;
        height: 30px;
    }
    
    /* Show mobile menu */
    .mobile-menu {
        display: block;
    }
    
    /* Logo positioning */
    .logo {
        position: static;
        order: 1;
        width: 35px;
        height: 55px;
        margin: 0;
    }
    
    /* Contact button positioning - center */
    .connect-btn {
        position: static;
        order: 2;
        width: 140px;
        height: 40px;
        margin: 0;
        transform: none;
    }
    
    .btn-text {
        font-size: 14px;
        line-height: 18px;
    }
    
    /* About section - convert to flow layout */
    .about-section {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 40px 20px;
        margin-top: -5px;
    }
    
    .about-title {
        font-size: 40px;
        line-height: 50px;
        letter-spacing: -6px;
        text-align: center;
        order: 2;
        margin: 0;
    }
    
    .personalised-image {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 200px;
        height: 160px;
        order: 1;
        margin: 0;
    }
    
    /* Move description content into about section */
    .description-content {
        order: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
        width: 100%;
    }
    
    .contact-button-container {
        order: 4;
        margin: 0;
    }
    
    .personalised-image img {
        width: 200px;
        height: 160px;
    }
    
    /* Description section - hide on mobile since content moved to about section */
    .description-section {
        display: none;
    }
    
    /* Show mobile description content */
    .mobile-description {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
        width: 100%;
        order: 3;
    }
    
    .mobile-description .main-description {
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        margin: 0;
    }
    
    .mobile-description .contact-button-container {
        order: 4;
        margin: 0;
    }
    
    .mobile-description .approach-content {
        display: flex !important;
        flex-direction: column;
        gap: 15px;
        order: 5;
        margin: 0;
        margin-bottom: 20px;
    }
    
    .mobile-description .approach-content .approach-text {
        font-size: 24px;
        line-height: 30px;
        text-align: center;
        margin: 0;
    }
    
    .tagline {
        font-size: 18px;
        line-height: 26px;
    }
    
    .personal-touch {
        font-size: 16px;
        line-height: 26px;
        margin-top: -20px;
    }
    
    .highlight {
        font-size: 16px;
        line-height: 26px;
    }
    
    .eight-answers-text {
        font-size: 16px;
    }
    
    .contact-button {
        padding: 12px 30px;
        font-size: 16px;
        margin: 0;
    }
    
    .contact-button-container {
        order: 4;
        margin: 0;
    }
    
    /* Approach section - hide on mobile since content moved to about section */
    .approach-section {
        display: none;
    }
    
    .approach-content {
        gap: 25px;
    }
    
    .approach-text {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -0.5px;
        text-align: center !important;
    }
    
    .text-row {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .pub-text {
        font-size: 40px;
        line-height: 50px;
        letter-spacing: -6px;
        margin-left: -12px;
    }
    
    .lic-text {
        font-size: 40px;
        line-height: 50px;
        letter-spacing: -6px;
    }
    
    .products-text {
        font-size: 40px;
        line-height: 50px;
        letter-spacing: -6px;
        margin-left: -12px;
    }
    
    /* Geometric shapes section - hide on mobile */
    .geometric-shapes {
        display: none;
    }
    
    .shapes-container {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 15px;
        background: #181818;
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
        overflow: hidden;
    }
    
    .shapes-text-overlay {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        width: 100%;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 2;
        margin-left: 0;
    }
    
    /* Suggestions button - convert to flow layout */
    .suggestions-btn-container {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        text-align: center;
        padding: 20px;
        margin: -17px 0 40px 0;
        margin-left: 0;
    }
    
    .suggestions-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    /* Connect section - hide on mobile since we're adding email to popup instead */
    .connect-section {
        display: none;
    }
    
    .connect-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    
    .connect-title,
    .connect-subtitle,
    .connect-email {
        font-size: 16px;
        line-height: 28px;
    }
    
    .email-link {
        font-size: 16px;
        line-height: 28px;
    }
    
    .connect-image {
        margin-left: 0;
        margin-top: -25px;
    }
    
    .connect-image img {
        width: 250px;
        height: 250px;
    }
    
    /* Footer - convert to flow layout */
    .footer {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        height: 80px;
        padding: 20px;
        margin-top: -10px;
    }
    
    .footer-text {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        text-align: center;
    }
    
    .footer-text p {
        font-size: 14px;
        line-height: 20px;
    }
}

/* Small Mobile Styles (up to 480px) */
@media (max-width: 480px) {
    /* Header adjustments for small mobile */
    .header {
        padding: 0 15px;
    }
    
    .logo {
        position: static;
        width: 30px;
        height: 47px;
        margin: 0;
    }
    
    .connect-btn {
        position: static;
        width: 120px;
        height: 35px;
        margin: 0;
        transform: none;
    }
    
    .btn-text {
        font-size: 12px;
        line-height: 16px;
    }
    
    /* About section - convert to flow layout */
    .about-section {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 15px;
        margin-top: -5px;
    }
    
    .about-title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -4px;
        order: 2;
        margin: 0;
        text-align: center;
    }
    
    .about-title .spaced-letter {
        margin-left: 0;
    }
    
    .personalised-image {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 150px;
        height: 120px;
        order: 1;
        margin: 0;
    }
    
    .personalised-image img {
        width: 150px;
        height: 120px;
    }
    
    /* Description section - hide on mobile since content moved to about section */
    .description-section {
        display: none;
    }
    
    /* Show mobile description content */
    .mobile-description {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
        width: 100%;
        order: 3;
    }
    
    .mobile-description .main-description {
        font-size: 13px;
        line-height: 22px;
        text-align: center;
        margin: 0;
    }
    
    .mobile-description .contact-button-container {
        order: 4;
        margin: 0;
    }
    
    .mobile-description .approach-content {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        order: 5;
        margin: 0;
        margin-bottom: 15px;
    }
    
    .mobile-description .approach-content .approach-text {
        font-size: 21px;
        line-height: 28px;
        text-align: center;
        margin: 0;
    }
    
    .tagline {
        font-size: 16px;
        line-height: 24px;
    }
    
    .personal-touch {
        font-size: 14px;
        line-height: 24px;
        margin-top: -20px;
    }
    
    .highlight {
        font-size: 14px;
        line-height: 24px;
    }
    
    .eight-answers-text {
        font-size: 14px;
    }
    
    .contact-button {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    /* Approach section - hide on small mobile since content moved to about section */
    .approach-section {
        display: none;
    }
    
    .approach-text {
        font-size: 24px;
        line-height: 32px;
    }
    
    /* Geometric shapes section - hide on small mobile */
    .geometric-shapes {
        display: none;
    }
    
    .shapes-container {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 15px;
        background: #181818;
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
        overflow: hidden;
    }
    
    .shapes-text-overlay {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        width: 100%;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 2;
        margin-left: 0;
    }
    
    .pub-text {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -4px;
        margin-left: -12px;
    }
    
    .lic-text {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -4px;
    }
    
    .products-text {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -4px;
        margin-left: -12px;
    }
    
    /* Suggestions button - convert to flow layout */
    .suggestions-btn-container {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        text-align: center;
        padding: 15px;
        margin: -17px 0 40px 0;
        margin-left: 0;
    }
    
    .suggestions-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    /* Connect section - hide on small mobile since we're adding email to popup instead */
    .connect-section {
        display: none;
    }
    
    .connect-title,
    .connect-subtitle,
    .connect-email {
        font-size: 14px;
        line-height: 24px;
    }
    
    .email-link {
        font-size: 16px;
        line-height: 24px;
    }
    
    .connect-image {
        margin-top: -25px;
    }
    
    .connect-image img {
        width: 200px;
        height: 200px;
    }
    
    /* Footer - convert to flow layout */
    .footer {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        height: 80px;
        padding: 15px;
        margin-top: -10px;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 767px) and (orientation: landscape) {
    /* In landscape mode, we keep the flow layout but adjust spacing */
    .header {
        height: 100px;
    }
    
    .header-line {
        top: 100px;
    }
    
    .about-section {
        margin-top: 100px;
        padding: 20px;
    }
    
    .approach-section {
        padding: 20px;
    }
    
    .geometric-shapes {
        margin: 20px 0;
    }
    
    .suggestions-btn-container {
        margin: -17px 0 15px 0;
    }
    
    .connect-section {
        padding: 20px;
    }
}

/* Ensure proper spacing for very small screens */
@media (max-width: 360px) {
    .about-title {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -3px;
    }
    
    .about-title .spaced-letter {
        margin-left: 0;
    }
    
    .personalised-image {
        width: 120px;
        height: 96px;
    }
    
    .personalised-image img {
        width: 120px;
        height: 96px;
    }
    
    .main-description {
        font-size: 12px;
        line-height: 20px;
    }
    
    .tagline {
        font-size: 14px;
        line-height: 22px;
    }
    
    .personal-touch {
        font-size: 12px;
        line-height: 22px;
    }
    
    .highlight {
        font-size: 12px;
        line-height: 22px;
    }
    
    .eight-answers-text {
        font-size: 12px;
    }
    
    .approach-text {
        font-size: 20px;
        line-height: 28px;
    }
    
    .pub-text,
    .lic-text,
    .products-text {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -3px;
    }
}

/* Additional mobile responsiveness improvements */
@media (max-width: 767px) {
    /* Ensure proper viewport handling */
    .geometric-shapes {
        max-width: 100%;
        overflow: hidden;
    }
    
    .shapes-text-overlay {
        padding: 0 10px;
    }
    
    /* Better text scaling for different screen densities */
    .about-title {
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .main-description {
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Ensure buttons are properly sized for touch */
    .contact-button,
    .suggestions-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better spacing for mobile navigation */
    .mobile-menu-item {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Responsive mobile menu */
    .mobile-menu {
        width: min(250px, 80vw);
    }
    
    .mobile-menu-item {
        padding: 12px 20px;
    }
    
    .mobile-btn-text {
        font-size: 16px;
        font-weight: 600;
    }
    
    /* Responsive positioning that scales with screen size */
    @media (max-width: 480px) {
        .geometric-shapes {
            margin-left: 160px;
        }
    }
    
    @media (max-width: 360px) {
        .geometric-shapes {
            margin-left: 120px;
        }
    }
    

    
    /* Handle different aspect ratios */
    @media (max-aspect-ratio: 1/1) {
        .about-section {
            padding: 20px 15px;
        }
        
        .geometric-shapes {
            height: 200px;
        }
        
        .connect-section {
            padding: 20px 15px;
        }
    }
    
    /* Handle landscape orientation better */
    @media (orientation: landscape) and (max-height: 500px) {
        .about-section {
            padding: 15px;
            gap: 15px;
        }
        
        .about-title {
            font-size: 30px;
            line-height: 40px;
        }
        
        .personalised-image {
            width: 120px;
            height: 96px;
        }
        
        .personalised-image img {
            width: 120px;
            height: 96px;
        }
        
        .geometric-shapes {
            height: 180px;
        }
    }
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(3px);
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.popup-header h2 {
    color: #FFF;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

.popup-email-info {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 122, 41, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 122, 41, 0.3);
}

.popup-email-text {
    color: #FF7A29;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.close-btn {
    background: none;
    border: none;
    color: #FF7A29;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-btn:hover {
    color: #E65A1A;
    transform: scale(1.1);
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #FFF;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: #000;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 12px 15px;
    color: #FFF;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 13px;
    transition: all 0.2s ease;
    resize: vertical;
}

.form-group textarea {
    min-height: 270px;
    font-size: 16px;
    line-height: 1.7;
    padding: 22px 25px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF7A29;
    box-shadow: 0 0 0 3px rgba(255, 122, 41, 0);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF7A29' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

.form-group select option {
    background: #000;
    color: #FFF;
    padding: 10px;
}

.form-group select:invalid {
    color: #666;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.submit-btn,
.cancel-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-btn {
    background: #FF7A29;
    color: #FFF;
}

.submit-btn:hover {
    background: #E65A1A;
    transform: translateY(-2px);
}

.cancel-btn {
    background: #333;
    color: #FFF;
}

.cancel-btn:hover {
    background: #444;
    transform: translateY(-2px);
}

/* Loading state */
.submit-btn.loading {
    background: #666;
    cursor: not-allowed;
    transform: none;
}

.submit-btn.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #FFF;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success/Error messages */
.message {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    color: #22c55e;
}

.message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* Success popup styles */
.success-popup {
    max-width: 400px;
    text-align: center;
}

.success-popup .popup-header h2 {
    color: #22c55e;
    font-size: 22px;
    margin-bottom: 10px;
}

.success-message {
    margin: 20px 0;
}

.success-message p {
    color: #FFF;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.success-popup .form-actions {
    justify-content: center;
}

.success-popup .submit-btn {
    background: #22c55e;
    min-width: 100px;
}

.success-popup .submit-btn:hover {
    background: #16a34a;
}

/* Responsive popup adjustments */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        padding: 20px;
        margin: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .popup-header h2 {
        font-size: 20px;
    }
    
    .popup-email-info {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .popup-email-text {
        font-size: 14px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .submit-btn,
    .cancel-btn {
        width: 100%;
    }
    
    .form-group {
        gap: 6px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .form-group textarea {
        min-height: 270px;
        font-size: 16px;
        padding: 20px 22px;
    }
}

@media (max-width: 480px) {
    .popup-content {
        width: 98%;
        padding: 15px;
        margin: 10px;
    }
    
    .popup-header h2 {
        font-size: 18px;
    }
    
    .popup-email-info {
        padding: 10px;
        margin-bottom: 12px;
    }
    
    .popup-email-text {
        font-size: 13px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .form-group textarea {
        min-height: 200px;
        font-size: 14px;
        padding: 15px 18px;
    }
    
    .submit-btn,
    .cancel-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
}
