/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    line-height: normal;
}

/* Homepage container */
.homepage {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    background-color: #131210;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Plus Jakarta Sans';
    margin: 0;
    padding: 0;
}

/* Main Hero Section Container */
.hero-section {
    position: relative;
    height: 140vh; /* Increased to accommodate much larger laptop */
    width: 100%;

    /* --- Layer 1: The Background (1.svg) --- */
    background-image: url("assets/images/1.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* --- Layout for Stacking Title and Laptop --- */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Aligns content to the top */

    /* --- Spacing --- */
    padding: 160px 0 40px 0; /* Remove left/right padding for full width */
    box-sizing: border-box;

    /* --- CRITICAL FIX: Prevent overflow --- */
    overflow: hidden; /* Clips any content that extends beyond the section */
}

/* Smooth bottom transition gradient */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px; /* Height of the fade effect */

    /* Gradient from transparent to your page background color */
    background: linear-gradient(
        to bottom,
        rgba(18, 18, 18, 0) 0%,
        #121212 100%
    );

    pointer-events: none;
}

.lines-icon {
    display: none;
}

.icon {
    position: absolute;
    top: 800px;
    left: calc(50% - 250px);
    width: 500px;
    height: 200px;
    object-fit: contain;
    z-index: 1;
}

/* Phone Container - Positions phone above the rock pedestal */
.phone-container {
    position: absolute;
    top: 350px;
    left: calc(50% - 180px);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

/* Screen Frame - The phone bezel */
.screen-frame {
    position: relative;
    z-index: 2;
}

.screen-border {
    width: 360px;
    height: 730px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 50px;
    padding: 12px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* App Screenshot Inside Phone */
.app-screenshot {
    width: 100%;
    height: 100%;
    border-radius: 42px;
    object-fit: cover;
    object-position: top center;
}

.text {
    position: absolute;
    top: 466px;
    left: 40px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    display: inline-block;
    width: 391px;
}

.hero-child {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: linear-gradient(180deg, rgba(14, 14, 14, 0), #0e0e0e);
    width: 100%;
    height: 582px;
}

/* Desktop/Mobile Toggle - Base Styles */
.desktop-only {
    display: flex;
}

.mobile-only {
    display: none !important;
}

.main-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 60px;
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    width: calc(100% - 80px);
    max-width: none;
    height: 80px;
    box-sizing: border-box;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.content-icon {
    height: 60px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.nav-links a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 12px 24px;
    border-radius: 100px;
}

.nav-links a:visited {
    color: #ffffff !important;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links a.active {
    background-color: transparent;
}

.nav-links .demo-button,
.nav-links a.demo-button,
a.demo-button {
    background-color: #ffffff;
    color: #000000 !important;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    line-height: 1;
}

.nav-links .demo-button:hover {
    background-color: #e0e0e0;
    color: #000000 !important;
    opacity: 1;
}

.navigation-actions {
    display: flex;
    align-items: center;
    gap: 34px;
}

.homepage-navigation {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-solutions {
    width: 121px;
    position: relative;
    height: 36px;
}

.dropdown-header-navigation-tri {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 8px;
}

.button {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.homepage-text {
    position: relative;
    line-height: 24px;
    text-transform: capitalize;
    font-weight: 600;
}

.chevron-icon {
    width: 24px;
    position: relative;
    height: 24px;
}

.nav-resources {
    width: 130px;
    position: relative;
    height: 36px;
}

.nav-company {
    width: 124px;
    position: relative;
    height: 36px;
}

.divider {
    width: 1px;
    position: relative;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.7);
    height: 26px;
}

.actions {
    display: flex;
    align-items: center;
    color: #131313;
}

.button4 {
    width: 166px;
    border-radius: 8px;
    height: 52px;
    display: flex;
    align-items: flex-start;
}

.button-base {
    flex: 1;
    border-radius: 14px;
    background-color: #fff;
    height: 52px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    box-sizing: border-box;
}

.text5 {
    position: relative;
    line-height: 24px;
    font-weight: 600;
}

.request {
    text-transform: capitalize;
}

.text6 {
    position: absolute;
    top: 167px;
    left: calc(50% - 627px);
    font-size: 64px;
    line-height: 110%;
    text-transform: capitalize;
    font-weight: 500;
    text-align: center;
    display: inline-block;
    width: 1255px;
}

.text7 {
    position: absolute;
    top: 554px;
    left: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
}

.text8 {
    position: relative;
    line-height: 26px;
    font-weight: 600;
}

.block-icon {
    width: 30px;
    border-radius: 75px;
    height: 30px;
}

/* Text Content Block */
.hero-content {
    text-align: center;
    flex-shrink: 0;
    margin-top: 0;
    margin-bottom: 100px; /* Increased for better spacing with much larger laptop */
    z-index: 10;
}

.hero-content h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: clamp(60px, 6.25vw, 100px);
    color: #ffffff;
    max-width: none;
    width: 100%;
    padding: 0 60px;
    box-sizing: border-box;
    line-height: 1.25;
    margin: 0;
}

/* Laptop Mockup Image Container */
.hero-image-container {
    width: 80%;
    max-width: 1400px;
    flex-shrink: 1; /* Allows the image to shrink if needed */
    line-height: 0;
    display: flex;
    justify-content: center;
    padding: 0;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Maintains aspect ratio while respecting max-height */
}

/* Workflow Section */
.workflow-section {
    padding: 120px 60px;
    background-color: #131210;
    width: 100%;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.workflow-section h2 {
    font-size: clamp(40px, 4.5vw, 72px);
    line-height: 110%;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 80px;
    text-align: center;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}

.workflow-subtitle {
    color: #9e9e9e;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: none;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.workflow-card {
    text-align: left;
    width: 100%; /* Cards fill their grid column */
}

.workflow-image {
    width: 100%;
    height: clamp(250px, 25vw, 400px);
    object-fit: contain;
    margin-bottom: 32px;

    /* The Magic: Fading the bottom of the image into the background */
    mask-image: linear-gradient(
        to bottom,
        black 70%,
        transparent 100%
    );

    /* For -webkit- browsers like Chrome and Safari */
    -webkit-mask-image: linear-gradient(
        to bottom,
        black 70%,
        transparent 100%
    );
}

.workflow-card h3 {
    font-size: clamp(22px, 2vw, 32px);
    line-height: 110%;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.workflow-card p {
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.6;
    color: #a0a0a0;
    margin-bottom: 32px;
}

.workflow-card .demo-button {
    display: none; /* Hidden on desktop */
    width: 368px;
    height: 52px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    line-height: 52px;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.workflow-card .demo-button:hover {
    background-color: #e0e0e0;
}

/* Centralized Workflow CTA Button */
.workflow-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    padding: 0 60px;
}

.workflow-button {
    display: inline-block;
    width: 320px;
    height: 60px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 100px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    line-height: 60px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.workflow-button:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

/* Hide workflow divider on desktop */
.workflow-divider {
    display: none;
}

.about-us-block {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 40px 112px;
    position: relative;
    color: #fff;
}

.about-us-block-child {
    width: 100%;
    position: absolute;
    margin: 0 !important;
    top: 0px;
    left: 0;
    background: linear-gradient(180deg, #131210, rgba(19, 18, 16, 0));
    height: 582px;
    z-index: 0;
}

.elements {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 48px;
    z-index: 1;
}

.text9 {
    align-self: stretch;
    position: relative;
    line-height: 110%;
    text-transform: capitalize;
    font-weight: 500;
}

.for-every-professional {
    color: rgba(255, 255, 255, 0.6);
}

.cards {
    align-self: stretch;
    display: flex;
    align-items: flex-start;
    gap: 32px;
    font-size: 30px;
}

.box {
    flex: 1;
    background-color: #21201e;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0px 32px 32px;
    gap: 32px;
}

.text10 {
    align-self: stretch;
    height: 404px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.image {
    align-self: stretch;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.still-life-with-scales-justice-icon {
    position: absolute;
    top: -141px;
    left: 0px;
    width: 434px;
    height: 651px;
    object-fit: cover;
}

.image-child {
    position: absolute;
    bottom: 0px;
    left: calc(50% - 217px);
    background: linear-gradient(180deg, rgba(33, 32, 30, 0), #21201e 88.74%);
    width: 434px;
    height: 60px;
}

.image-item {
    position: absolute;
    top: 35px;
    left: calc(50% - 217px);
    background: linear-gradient(180deg, rgba(33, 32, 30, 0.1), #21201e);
    width: 434px;
    height: 35px;
}

.text12 {
    align-self: stretch;
    position: relative;
    font-size: 31px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

.button5 {
    align-self: stretch;
    border-radius: 8px;
    height: 52px;
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    color: #131313;
}

.homepage-button-base {
    flex: 1;
    border-radius: 8px;
    background-color: #fff;
    height: 52px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    box-sizing: border-box;
}

.homepage-box {
    flex: 1;
    background-color: #131210;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0px 32px 32px;
    gap: 32px;
    font-size: 14px;
}

.homepage-image {
    align-self: stretch;
    flex: 1;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.image-inner {
    position: absolute;
    top: calc(50% - 178px);
    left: calc(50% - 299px);
    width: 599px;
    height: 355px;
}

.rectangle-div {
    position: absolute;
    bottom: 0px;
    left: calc(50% - 217px);
    background: linear-gradient(180deg, rgba(19, 18, 16, 0), #131210 88.74%);
    width: 434px;
    height: 60px;
}

.homepage-image-child {
    position: absolute;
    top: 35px;
    left: calc(50% - 217px);
    background: linear-gradient(180deg, rgba(19, 18, 16, 0.1), #131210);
    width: 434px;
    height: 35px;
}

.need-help {
    position: absolute;
    top: calc(50% - 41px);
    left: calc(50% - 134px);
    width: 268px;
    height: 82px;
}

.need-help-child {
    position: absolute;
    top: 9px;
    left: 233px;
    border-radius: 50%;
    background-color: #343434;
    width: 14px;
    height: 14px;
}

.chat {
    position: absolute;
    top: 26px;
    left: 0px;
    backdrop-filter: blur(2.61px);
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    gap: 17.9px;
}

.block {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 0;
}

.homepage-block-icon {
    width: 40px;
    border-radius: 100px;
    height: 40px;
    object-fit: cover;
}

.need-help-finding {
    position: relative;
    line-height: 22px;
    font-weight: 500;
}

.button-icon {
    width: 24px;
    margin: 0 !important;
    position: absolute;
    top: -4px;
    right: -4px;
    border-radius: 24px;
    height: 24px;
    z-index: 1;
}

.need-help-item {
    position: absolute;
    top: 0px;
    left: 244px;
    border-radius: 50%;
    background-color: #343434;
    width: 7px;
    height: 7px;
}

.text15 {
    align-self: stretch;
    position: relative;
    font-size: 30px;
    line-height: 110%;
    text-transform: capitalize;
    font-weight: 500;
}

.box2 {
    flex: 1;
    background-color: #131210;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0px 32px 32px;
    gap: 32px;
    font-size: 16px;
}

.file-queue {
    position: absolute;
    top: calc(50% - 160.5px);
    left: calc(50% - 182px);
    width: 364px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.file-upload-item-base {
    backdrop-filter: blur(2.61px);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    position: relative;
    gap: 17.9px;
    opacity: 0.6;
}

.content {
    width: 336px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 0;
}

.file-format-icons {
    width: 40px;
    position: relative;
    max-height: 100%;
}

.homepage-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.text-and-supporting-text {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.text19 {
    align-self: stretch;
    position: relative;
    line-height: 140%;
    font-weight: 600;
}

.supporting-text {
    align-self: stretch;
    position: relative;
    font-size: 14px;
    line-height: 110%;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.homepage-button-icon {
    width: 24px;
    margin: 0 !important;
    position: absolute;
    top: -6px;
    right: -2px;
    border-radius: 24px;
    height: 24px;
    z-index: 1;
}

.homepage-file-upload-item-base {
    backdrop-filter: blur(2.61px);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    position: relative;
    gap: 17.9px;
}

.progress-fill {
    width: 280px;
    position: absolute;
    margin: 0 !important;
    top: 0px;
    left: 0px;
    border-radius: 20px 0px 0px 20px;
    background-color: rgba(169, 169, 169, 0.12);
    height: 71px;
    overflow: hidden;
    flex-shrink: 0;
    z-index: 0;
}

.content2 {
    width: 336px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1;
}

.button-icon2 {
    width: 24px;
    margin: 0 !important;
    position: absolute;
    top: -6px;
    right: -2px;
    border-radius: 24px;
    height: 24px;
    z-index: 2;
}

.homepage-progress-fill {
    width: 127px;
    position: absolute;
    margin: 0 !important;
    top: 0px;
    left: 0px;
    border-radius: 20px 0px 0px 20px;
    background-color: rgba(169, 169, 169, 0.12);
    height: 71px;
    overflow: hidden;
    flex-shrink: 0;
    z-index: 0;
}

.progress-fill2 {
    width: 74px;
    position: absolute;
    margin: 0 !important;
    top: 0px;
    left: 0px;
    border-radius: 20px 0px 0px 20px;
    background-color: rgba(169, 169, 169, 0.12);
    height: 70px;
    overflow: hidden;
    flex-shrink: 0;
    z-index: 0;
}

.text24 {
    align-self: stretch;
    position: relative;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
}

.button7 {
    align-self: stretch;
    border-radius: 8px;
    height: 52px;
    display: flex;
    align-items: flex-start;
    color: #131313;
}

/* Document Chaos Section */
.chaos-section {
    text-align: center;
    padding: 100px 0;
    background-color: #131210;
    position: relative;
    z-index: 1;
}

/* Header Styling */
.chaos-header {
    max-width: none;
    width: 100%;
    padding: 0 60px;
    box-sizing: border-box;
    margin: 0 0 60px 0;
}

.chaos-header h2 {
    font-size: 60px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #ffffff;
    line-height: 110%;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.chaos-subtitle {
    color: #9e9e9e;
}

.chaos-header .subtitle {
    font-size: 25px;
    color: #a0a0a0;
    line-height: 1.6;
}

/* Three-Column Grid Styling */
.chaos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 40px;
    max-width: none;
    width: 100%;
    padding: 0 60px;
    box-sizing: border-box;
}

/* Side Text Styling */
.chaos-text-left,
.chaos-text-right {
    font-size: 25px;
    line-height: 1.7;
    color: #c0c0c0;
}

.chaos-text-left {
    text-align: right;
    padding-right: 20px;
}

.chaos-text-right {
    text-align: left;
    padding-left: 20px;
}

/* Center Image Styling */
.chaos-image-container img {
    max-width: 100%;
    height: auto;
    width: 700px;
    position: relative;
    object-fit: contain;
    opacity: 0.8;
    mix-blend-mode: screen;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0) 100%);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.document-chaos {
    color: #fff;
}

/* How It Works Section - Updated Styles */
.how-it-works-section {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 0;
    gap: 80px;
    background-color: #121212;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.section-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 0;
    padding: 0 60px;
    box-sizing: border-box;
}

.section-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 60px;
    line-height: 110%;
    margin: 0;
    color: #ffffff;
}

.how-subtitle {
    color: #9e9e9e;
}

/* CRITICAL: Full-Width Intro Text */
.intro-text {
    font-size: 25px;
    line-height: 1.6;
    color: #B0B0B0;
    max-width: 100%;
    width: 100%;
    margin: 0;
}

/* Keep old class for backwards compatibility */
.how-it-works-block {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 112px 40px;
    gap: 64px;
}

.text33 {
    width: 645px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.box5 {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    font-size: 30px;
    color: #fff;
    padding: 0 60px;
    box-sizing: border-box;
}

.box6 {
    align-self: stretch;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 32px;
    width: 100%;
}

.container2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
}

.homepage-block {
    width: 60px;
    position: relative;
    backdrop-filter: blur(2.61px);
    border-radius: 100px;
    background-color: #21201e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    height: 60px;
    overflow: hidden;
    flex-shrink: 0;
}

/* Specific styles for How It Works section only */
.how-it-works-section .homepage-block {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #2A2A2A;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide grid lines in How It Works section */
.how-it-works-section .lines {
    display: none;
}

.background-pattern {
    position: absolute;
    top: calc(50% - 65px);
    left: calc(50% - 103px);
    width: 180px;
    height: 135.1px;
    overflow: hidden;
}

.content8 {
    position: absolute;
    top: 0px;
    left: calc(50% - 308.02px);
    width: 616px;
    height: 462px;
}

.lines {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 462px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vertical {
    height: 462px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    gap: 25.7px;
    z-index: 0;
}

.line {
    align-self: stretch;
    width: 0.3px;
    position: relative;
    border-right: 0.3px solid rgba(208, 213, 221, 0.2);
    box-sizing: border-box;
    opacity: 0;
}

.homepage-line {
    align-self: stretch;
    width: 0.3px;
    position: relative;
    border-right: 0.3px solid rgba(208, 213, 221, 0.2);
    box-sizing: border-box;
}

.horizontal {
    width: 616px;
    margin: 0 !important;
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25.7px;
    z-index: 1;
}

.line25 {
    align-self: stretch;
    position: relative;
    border-top: 0.3px solid rgba(208, 213, 221, 0.2);
    box-sizing: border-box;
    height: 0.3px;
    opacity: 0;
}

.line26 {
    align-self: stretch;
    position: relative;
    border-top: 0.3px solid rgba(208, 213, 221, 0.2);
    box-sizing: border-box;
    height: 0.3px;
}

.block-child {
    position: absolute;
    top: 14px;
    left: 14px;
    border-radius: 50%;
    background-color: #292929;
    border: 1px solid #454647;
    box-sizing: border-box;
    width: 32px;
    height: 32px;
}

.iconixtolinearcloud-transfer {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 24px;
    height: 24px;
}

/* Specific styles for How It Works section only */
.how-it-works-section .block-child {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border: none;
    z-index: 1;
}

.how-it-works-section .iconixtolinearcloud-transfer {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    z-index: 2;
    filter: brightness(0) invert(1);
}

.text36 {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.text38 {
    align-self: stretch;
    position: relative;
    font-size: 16px;
    line-height: 24px;
}

.features-block {
    align-self: stretch;
    position: relative;
    height: 1038px;
    font-size: 30px;
    color: #fff;
}

/* Smart. Secure. Surprisingly Simple. Section */
.smart-secure-section {
    position: relative;
    background-color: #121212;
    padding: 100px 0;
    display: flex;
    align-items: center;
    gap: 80px;
    overflow: visible;
    z-index: 1;
}

/* Left Side: MacBook Mockup Container */
.mockup-container {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 60px;
}

.macbook-mockup {
    width: 120%;
    max-width: none;
    height: auto;
}

/* Right Side: Content Container */
.content-container {
    flex: 1;
    color: #ffffff;
    padding-right: 60px;
}

.smart-secure-section .section-header {
    margin-bottom: 60px;
    padding: 0;
}

.smart-secure-section .section-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.smart-subtitle {
    color: #9e9e9e;
}

.smart-secure-section .intro-text {
    font-size: 18px;
    line-height: 1.6;
    color: #B0B0B0;
    max-width: 100%;
}

/* Features Grid - 2x2 Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
}

/* Individual Feature Item */
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Circular Icon Background with SVG Icons */
.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(42, 42, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-circle img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

/* Feature Title */
.feature-item h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 12px;
    color: #ffffff;
}

/* Feature Description */
.feature-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #B0B0B0;
    margin: 0;
}

/* Responsive Design for Smart Secure Section */
@media (max-width: 1024px) {
    .smart-secure-section {
        flex-direction: column;
        gap: 60px;
    }

    .mockup-container {
        flex: none;
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

.homepage-elements {
    position: absolute;
    top: calc(50% - 407px);
    left: 80px;
    width: 1280px;
    height: 814px;
}

.elements2 {
    position: absolute;
    top: 283px;
    left: 0px;
    border-radius: 40px;
    width: 528px;
    height: 501px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.iphone-16-plus-light {
    position: absolute;
    top: calc(50% - 533.5px);
    left: calc(50% - 179.28px);
    width: 359.3px;
    height: 740.5px;
    object-fit: cover;
}

.box8 {
    position: absolute;
    top: 0px;
    left: 635px;
    width: 645px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
}

.text48 {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    font-size: 64px;
    color: rgba(255, 255, 255, 0.6);
}

.box9 {
    align-self: stretch;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 45px;
}

.pricing-block {
    align-self: stretch;
    position: relative;
    height: 1102px;
    font-size: 64px;
}

.box11 {
    position: absolute;
    top: calc(50% - 435px);
    left: calc(50% - 640px);
    width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.text63 {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    text-align: center;
}

.horizontal-tabs {
    border-radius: 100px;
    background-color: #4c4c4c;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    font-size: 14px;
    color: #32302c;
}

.tab-button-base {
    border-radius: 100px;
    background-color: #fff;
    height: 36px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    box-sizing: border-box;
}

.text66 {
    position: relative;
    line-height: 140%;
    font-weight: 600;
}

.homepage-tab-button-base {
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    gap: 8px;
    color: #fff;
}

.badge {
    border-radius: 100px;
    background-color: #fbbc04;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    box-sizing: border-box;
    font-size: 12px;
    color: #131313;
}

.save-20 {
    position: relative;
    font-weight: 600;
}

.box12 {
    align-self: stretch;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 36px;
    font-size: 20px;
    color: #fff;
}

.block9 {
    align-self: stretch;
    backdrop-filter: blur(2.61px);
    background-color: #0f0f0f;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    gap: 12px;
}

.block11 {
    align-self: stretch;
    backdrop-filter: blur(2.61px);
    background-color: #21201e;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 18px;
    gap: 16px;
    font-size: 16px;
}

.tab-button-base2 {
    width: 66px;
    backdrop-filter: blur(2.61px);
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    font-size: 14px;
}

.homepage-divider {
    align-self: stretch;
    position: relative;
    background-color: rgba(255, 255, 255, 0.2);
    height: 1px;
}

.text72 {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 0px 32px;
    gap: 14px;
}

.text73 {
    align-self: stretch;
    position: relative;
    line-height: 24px;
}

.check-item-text {
    align-self: stretch;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon {
    width: 24px;
    border-radius: 100px;
    height: 24px;
}

.button8 {
    align-self: stretch;
    border-radius: 8px;
    background-color: #fff;
    height: 52px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 10px 12px 10px 18px;
    box-sizing: border-box;
    gap: 8px;
    color: #181818;
}

.text80 {
    flex: 1;
    position: relative;
    line-height: 24px;
    text-transform: capitalize;
    font-weight: 600;
}

.block14 {
    align-self: stretch;
    backdrop-filter: blur(2.61px);
    background-color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 18px;
    gap: 16px;
    font-size: 16px;
    color: #32302c;
}

.tab-button-base3 {
    border-radius: 100px;
    background-color: #fbbc04;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    font-size: 14px;
}

.price {
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    font-size: 30px;
}

.text84 {
    position: relative;
    line-height: 110%;
    text-transform: capitalize;
    font-weight: 500;
}

.text85 {
    flex: 1;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: rgba(50, 48, 44, 0.6);
}

.divider2 {
    align-self: stretch;
    position: relative;
    background-color: rgba(50, 48, 44, 0.1);
    height: 1px;
}

.button9 {
    align-self: stretch;
    border-radius: 8px;
    height: 52px;
    display: flex;
    align-items: flex-start;
    color: #fff;
}

.button-base4 {
    flex: 1;
    border-radius: 14px;
    background-color: #181818;
    height: 52px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px 10px 18px;
    box-sizing: border-box;
    gap: 0px;
}

.tab-button-base4 {
    backdrop-filter: blur(2.61px);
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    font-size: 14px;
}

.text99 {
    flex: 1;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.6);
}

.homepage-pricing-block {
    align-self: stretch;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 112px 80px;
    position: relative;
    gap: 10px;
    text-align: center;
    font-size: 64px;
}

.homepage-lines-icon {
    width: 1503px;
    position: absolute;
    margin: 0 !important;
    top: calc(50% - 751.36px);
    left: calc(50% - 751px);
    height: 1503px;
    z-index: 0;
}

.box13 {
    width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    z-index: 1;
}

.text123 {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.content20 {
    width: 500px;
    backdrop-filter: blur(2.61px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    text-align: left;
    font-size: 14px;
    color: #fff;
}

.homepage-form {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.name-field {
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.label {
    position: relative;
    line-height: 20px;
    font-weight: 600;
}

.input {
    align-self: stretch;
    backdrop-filter: blur(2.61px);
    background-color: #21201e;
    height: 52px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-sizing: border-box;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.content21 {
    flex: 1;
    display: flex;
    align-items: center;
}

.text126 {
    flex: 1;
    position: relative;
    line-height: 24px;
}

.homepage-actions {
    align-self: stretch;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #131313;
}

.button12 {
    flex: 1;
    border-radius: 8px;
    height: 52px;
    display: flex;
    align-items: flex-start;
}

.shadow {
    width: 100%;
    position: absolute;
    margin: 0 !important;
    bottom: 0.36px;
    left: 0;
    background: linear-gradient(180deg, rgba(19, 18, 16, 0), #131210);
    height: 112px;
    z-index: 2;
}

.homepage-shadow {
    width: 100%;
    position: absolute;
    margin: 0 !important;
    top: -0.36px;
    left: 0;
    background: linear-gradient(180deg, #131210, rgba(19, 18, 16, 0));
    height: 112px;
    z-index: 3;
}

.text130 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.text132 {
    width: 791px;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    display: none;
}

.box14 {
    align-self: stretch;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 32px;
    font-size: 16px;
    color: #fff;
}

.blog-post-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.image3 {
    align-self: stretch;
    position: relative;
    height: 258px;
    overflow: hidden;
    flex-shrink: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.content24 {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.heading-and-subheading {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 30px;
}

.heading-and-text {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.heading-and-icon {
    align-self: stretch;
    display: flex;
    align-items: flex-start;
}

.heading {
    flex: 1;
    position: relative;
    line-height: 110%;
    text-transform: capitalize;
    font-weight: 500;
    display: -webkit-inline-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.supporting-text4 {
    align-self: stretch;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    display: -webkit-inline-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.avatar-label-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-icon {
    width: 40px;
    border-radius: 1000px;
    height: 40px;
    object-fit: cover;
}

.text-and-supporting-text4 {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.text133 {
    position: relative;
    line-height: 24px;
}

.supporting-text5 {
    position: relative;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.6);
}

.icon-wrap {
    display: flex;
    align-items: flex-start;
    padding: 4px 0px 0px;
    gap: 8px;
}

.text134 {
    position: relative;
    line-height: 24px;
    font-weight: 500;
}

.homepage-cta-block {
    align-self: stretch;
    position: relative;
    height: 938px;
    font-size: 106px;
    background-color: #121212;
    z-index: 1;
    width: 100%;
}

.homepage-cta {
    position: absolute;
    top: 84px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 57px;
    width: calc(100% - 120px);
    max-width: none;
}

.box15 {
    flex: 1;
    max-width: 750px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
}

.text139 {
    align-self: stretch;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.actions2 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.mobile-app-store-badge {
    width: 156px;
    align-self: center;
    position: relative;
    border-radius: 8.27px;
    height: 52px;
}

.homepage-mobile-app-store-badge {
    width: 175.5px;
    align-self: center;
    position: relative;
    border-radius: 5.91px;
    height: 52px;
    object-fit: cover;
}

.cta-image-container {
    position: relative;
    width: 583px;
    height: 526px;
    background-image: url("assets/images/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visula-icon {
    width: 160%;
    height: 160%;
    position: relative;
    object-fit: contain;
    z-index: 1;
}

/* ===================================
   Footer Section Styling
   =================================== */

/* Main Footer Container */
.site-footer {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-color: #121212;
    color: #E0E0E0;
    padding: 80px 60px 40px 60px;
    overflow: hidden;
    box-sizing: border-box;
    z-index: 1;
}

/* Background Watermark */
.site-footer::after {
    content: "";
    background-image: url("assets/images/logo copy.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: 50px;
    bottom: 20px;
    width: 300px;
    height: 300px;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

/* Footer Main Layout */
.footer-main {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    max-width: 1280px;
    margin: 0 auto 40px auto;
}

/* Left Side: Logo, Newsletter, Copyright */
.footer-left {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-logo {
    width: 180px;
    height: auto;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 18px 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #444444;
    border-radius: 0;
    color: #ffffff;
    font-size: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-sizing: border-box;
}

.newsletter-form input[type="email"]::placeholder {
    color: #757575;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-bottom-color: #ffffff;
}

/* Newsletter Submit Button with Circular Arrow */
.newsletter-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    color: #E0E0E0;
    font-size: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.newsletter-submit:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.newsletter-submit span {
    flex: 1;
    text-align: left;
}

/* Circular Arrow Button */
.arrow-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.newsletter-submit:hover .arrow-circle {
    transform: translateX(4px);
}

.arrow-circle img {
    width: 20px;
    height: 20px;
}

/* Footer Copyright */
.footer-copyright {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    color: #9E9E9E;
    flex-wrap: wrap;
}

.footer-copyright a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #ffffff;
}

.footer-copyright .divider {
    color: #555555;
}

/* Right Side: Navigation Links */
.footer-nav {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.nav-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-column h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-column a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #B0B0B0;
    text-decoration: none;
    font-size: 25px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: color 0.3s ease;
}

.nav-column a:hover {
    color: #ffffff;
}

.nav-column a img {
    width: 12px;
    height: 12px;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-column a:hover img {
    opacity: 1;
    transform: translateX(2px);
}

/* Back to Top Link */
.back-to-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 40px 80px 0 0;
    color: #B0B0B0;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-to-top:hover {
    color: #ffffff;
}

.back-to-top img {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top:hover img {
    opacity: 1;
    transform: translateY(-2px);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main {
        flex-direction: column;
        gap: 60px;
    }

    .footer-left {
        flex: none;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px 30px 20px;
        overflow: hidden;
    }

    /* Watermark logo - contained and centered on mobile */
    .site-footer::after {
        width: 200px;
        height: 200px;
        right: 50%;
        bottom: 50%;
        transform: translate(50%, 50%);
        opacity: 0.03;
    }

    .footer-main {
        gap: 40px;
    }

    .footer-left {
        gap: 24px;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-nav > div h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-nav > div a {
        font-size: 14px;
        padding: 8px 0;
    }

    .footer-copyright {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
    }

    .footer-copyright .divider {
        display: none;
    }

    .newsletter-form input {
        font-size: 14px;
        padding: 12px 16px;
    }

    .newsletter-form button {
        font-size: 14px;
        padding: 12px 16px;
    }
}

/* Responsive Design */

/* Desktop Responsive Styles - For screens larger than 1440px */
@media (min-width: 1441px) {
    /* Main Container - Full width */
    .homepage {
        max-width: none;
        width: 100%;
    }

    /* Hero Section - Full width */
    .hero-section {
        max-width: none;
        width: 100%;
    }

    /* Navigation - Full width */
    .main-nav {
        max-width: none;
        width: calc(100% - 80px);
    }

    /* Hero Content - Full width */
    .hero-content {
        max-width: none;
        width: 100%;
    }

    .hero-content h1 {
        text-align: center;
    }

    /* Hero Image - Full width */
    .hero-image-container {
        max-width: none;
        width: 100%;
    }

    .hero-image-container img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Workflow Section - Full width */
    .workflow-section {
        max-width: none;
        width: 100%;
        padding-left: 60px;
        padding-right: 60px;
    }

    /* Chaos Section - Full width */
    .chaos-section {
        max-width: none;
        width: 100%;
        padding-left: 60px;
        padding-right: 60px;
    }

    /* How It Works Section - Full width */
    .how-it-works-section {
        max-width: none;
        width: 100%;
        padding-left: 60px;
        padding-right: 60px;
    }

    /* Smart Secure Section - Full width */
    .smart-secure-section {
        max-width: none;
        width: 100%;
        padding-left: 60px;
        padding-right: 60px;
    }

    /* Form Section - Full width */
    .form-section {
        max-width: none;
        width: 100%;
    }

    /* CTA Block - Full width */
    .homepage-cta-block {
        max-width: none;
        width: 100%;
    }

    /* Footer - Full width */
    .site-footer {
        max-width: none;
        width: 100%;
        padding-left: 60px;
        padding-right: 60px;
    }

    .footer-main {
        max-width: none;
        width: 100%;
    }
}

@media (max-width: 1440px) {
    .homepage {
        font-size: 44px;
        width: 100%;
    }

    .navigation {
        width: calc(100% - 80px);
        left: 40px;
    }

    .hero {
        height: auto;
        min-height: 1407px;
        width: 100%;
    }

    .hero-section {
        width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }

    .icon {
        left: calc(50% - 400px);
        width: 800px;
        height: 800px;
    }

    .text6 {
        left: calc(50% - 500px);
        width: 1000px;
    }

    .workflow-section,
    .chaos-section,
    .how-it-works-section,
    .smart-secure-section,
    .form-section,
    .homepage-cta-block {
        width: 100%;
        max-width: 100%;
        padding-left: 40px;
        padding-right: 40px;
        box-sizing: border-box;
    }

    .workflow-section h2,
    .workflow-grid {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 1024px) {
    .homepage {
        font-size: 36px;
    }
    
    .text6 {
        font-size: 48px;
        left: calc(50% - 400px);
        width: 800px;
    }
    
    .cards {
        flex-direction: column;
        gap: 24px;
    }
    
    .box6 {
        flex-direction: column;
        gap: 24px;
    }
    
    .box12 {
        flex-direction: column;
        gap: 24px;
    }
    
    .homepage-cta {
        flex-direction: column;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .homepage {
        font-size: 28px;
    }
    
    .navigation {
        width: calc(100% - 40px);
        left: 20px;
        padding: 8px;
    }
    
    .homepage-navigation {
        display: none;
    }
    
    .text6 {
        font-size: 36px;
        left: 20px;
        width: calc(100% - 40px);
    }
    
    .text {
        left: 20px;
        width: calc(100% - 40px);
    }
    
    .text7 {
        left: 20px;
    }
    
    .cta-block {
        padding: 80px 20px;
    }
    
    .how-it-works-block {
        padding: 80px 20px;
    }
    
    .homepage-pricing-block {
        padding: 80px 20px;
    }
}

@media (max-width: 480px) {
    .homepage {
        font-size: 24px;
    }
    
    .text6 {
        font-size: 28px;
    }
    
    .text48 {
        font-size: 36px;
    }
    
    .text63 {
        font-size: 36px;
    }
    
    .text123 {
        font-size: 36px;
    }
    
    .text139 {
        font-size: 36px;
    }
}

/* Cross-platform font loading */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
    font-display: swap;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.button:focus,
.homepage-button-base:focus,
.button-base:focus,
.button-base4:focus,
.text7:focus,
.text150:focus,
.text165:focus,
.icon-wrap:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .homepage {
        background-color: #000;
    }
    
    .box, .homepage-box, .box2 {
        border: 1px solid rgba(255, 255, 255, 0.5);
    }
}

/* Print styles */
@media print {
    .homepage {
        background-color: white;
        color: black;
    }
    
    .hero {
        background: none;
        color: black;
    }
}
/* ===================================
   Form Section Styling
   =================================== */

/* Main Section Container */
.form-section {
    align-self: stretch; /* Ensures full width within parent flexbox */
    width: 100%; /* Ensures full viewport width */
    background-color: #121212;
    color: #ffffff;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* --- CRITICAL: The Form Container --- */
.form-container {
    width: 100%;
    max-width: 550px; /* Sets the maximum width of the form */
    margin-left: auto;
    margin-right: auto;
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 64px;
    margin-bottom: 16px;
    color: #ffffff;
}

.signup-subtitle {
    color: #9e9e9e;
}

.form-header p {
    font-size: 18px;
    color: #B0B0B0;
}

/* Form Grouping (Label + Input) */
.form-group {
    margin-bottom: 24px;
    text-align: left; /* Ensures labels are left-aligned */
}

.form-group label {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    color: #E0E0E0;
}

/* Input Fields */
.form-group input {
    width: 100%; /* Makes input fill the .form-container width */
    padding: 14px 16px;
    background-color: #2A2A2A;
    border: 1px solid #444444;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    box-sizing: border-box; /* Ensures padding doesn't add to width */
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-group input::placeholder {
    color: #757575;
}

.form-group input:focus {
    outline: none;
    border-color: #ffffff;
}

/* Submit Button */
.submit-btn {
    width: 100%; /* Makes button fill the .form-container width */
    padding: 16px;
    background-color: #ffffff;
    color: #121212;
    border: none;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-top: 16px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #E0E0E0;
}

.submit-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* Responsive adjustments for form */
@media (max-width: 768px) {
    .form-section {
        padding: 60px 20px;
    }
    
    .form-header h2 {
        font-size: 36px;
    }
    
    .form-header p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .form-header h2 {
        font-size: 28px;
    }

    .form-group input {
        font-size: 14px;
    }

    .submit-btn {
        font-size: 14px;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   Mobile-First Approach
   ======================================== */

/* ===== MOBILE BREAKPOINTS ===== */
/* Mobile: 320px - 767px */
/* Tablet: 768px - 1023px */
/* Desktop: 1024px+ */

/* ===== BASE MOBILE STYLES (320px+) ===== */
@media (max-width: 767px) {
    /* Body and Container */
    body {
        -webkit-tap-highlight-color: transparent;
        -webkit-text-size-adjust: 100%;
    }

    .homepage {
        font-size: 16px;
        overflow-x: hidden;
        overflow-y: visible;
    }

    body {
        overflow-y: visible !important;
    }

    /* Hero Section - Mobile */
    .hero-section {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for iOS */
        padding: 80px 16px 40px 16px;
    }

    /* Navigation - Mobile (Pill Style) */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: transparent;
        padding: 12px 16px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: none;
        padding: 12px 20px;
        background: rgba(33, 32, 30, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 100px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        left: auto;
        top: auto;
        transform: none !important;
        height: auto;
    }

    .nav-links {
        display: none !important;
    }

    .nav-links.desktop-only {
        display: none !important;
    }

    /* Mobile Menu Button */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        width: 44px;
        height: 44px;
        padding: 10px;
        background: transparent;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1001;
        flex-shrink: 0;
    }

    .mobile-menu-toggle .menu-line {
        display: block !important;
        width: 24px;
        height: 3px;
        background: white;
        transition: all 0.3s ease;
        border-radius: 2px;
        flex-shrink: 0;
    }

    .mobile-menu-toggle.active .menu-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

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

    .mobile-menu-toggle.active .menu-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .mobile-menu-toggle .menu-icon,
    .hamburger-icon {
        display: none;
    }

    /* Full-Screen Overlay Menu */
    .mobile-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #21201E;
        visibility: hidden;
        opacity: 0;
        display: none;
        transition: all 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .mobile-menu.active {
        visibility: visible;
        opacity: 1;
        display: block;
    }

    .mobile-menu-content {
        padding: 0 20px 40px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        min-height: calc(100vh - 76px);
        position: relative;
    }

    /* Menu Items */
    .mobile-menu-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
        flex: 1;
        width: 100%;
    }

    .mobile-menu-link {
        color: white;
        text-decoration: none;
        font-size: 36px;
        font-weight: 500;
        background: transparent;
        border: none;
        padding: 20px 0;
        cursor: pointer;
        font-family: 'Plus Jakarta Sans', sans-serif;
        transition: opacity 0.3s ease;
        text-align: center;
        width: 100%;
    }

    .mobile-menu-link:last-child {
        border-bottom: none;
    }

    .mobile-menu-link:active {
        opacity: 0.6;
    }

    .mobile-lang-dropdown {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        width: 100%;
        text-align: center;
        padding: 20px 0 10px 0 !important;
        font-size: 36px !important;
        font-weight: 500 !important;
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        color: white !important;
    }

    .mobile-lang-dropdown .lang-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-flag-icon {
        width: 28px;
        height: 28px;
        object-fit: contain;
        vertical-align: middle;
    }

    .mobile-lang-dropdown .lang-arrow {
        font-size: 20px;
        opacity: 0.6;
        transition: transform 0.3s ease;
    }

    .mobile-lang-dropdown.expanded .lang-arrow {
        transform: rotate(180deg);
    }

    .mobile-lang-dropdown::after {
        display: none;
    }

    /* Language Options */
    .mobile-language-options {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        margin-top: 0;
        width: 100%;
    }

    .mobile-language-options.show {
        display: flex;
    }

    .mobile-lang-btn {
        padding: 10px 20px;
        background: transparent;
        color: rgba(255, 255, 255, 0.8);
        border: none;
        font-size: 28px !important;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Plus Jakarta Sans', sans-serif;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }

    .mobile-lang-btn .mobile-flag-icon {
        width: 24px;
        height: 24px;
    }

    .mobile-lang-btn:active {
        color: white;
        background: rgba(255, 255, 255, 0.05);
    }

    .mobile-lang-btn.active {
        color: white;
        font-weight: 600;
    }

    /* Try Koda Button - positioned at bottom */
    .mobile-cta-btn,
    .mobile-menu-content .demo-button {
        display: block;
        width: 100%;
        padding: 18px 20px;
        background: white;
        color: #131313 !important;
        text-decoration: none;
        text-align: center;
        border-radius: 100px;
        font-size: 18px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-top: auto;
        margin-bottom: 40px;
        line-height: 1.5;
    }

    .mobile-cta-btn:active,
    .mobile-menu-content .demo-button:active {
        background: #f0f0f0;
        transform: scale(0.98);
    }

    /* Prevent body scroll when menu open */
    body.mobile-menu-open {
        overflow: hidden;
    }

    /* Logo */
    .logo img,
    .content-icon {
        height: 60px;
        width: auto;
    }

    /* Hero Content - Mobile */
    .hero-content {
        padding: 80px 0 40px 0;
        margin-top: 60px;
    }

    .hero-content h1 {
        font-size: 52px !important;
        line-height: 1.1;
        text-align: center;
        margin-bottom: 40px;
    }

    /* Hero Image - Mobile */
    .hero-image-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 20px 0 80px 0;
        position: relative;
    }

    .hero-image-container::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 150px;
        background: linear-gradient(180deg, rgba(14, 14, 14, 0) 0%, #0E0E0E 100%);
        pointer-events: none;
        z-index: 1;
    }

    .hero-image-container img {
        width: 120%;
        height: auto;
        max-width: 600px;
        margin: 0 auto;
        display: block;
        transform: scale(1.15);
        position: relative;
        z-index: 0;
    }

    /* Phone Container - Mobile */
    .phone-container {
        position: relative;
        top: auto;
        left: auto;
        margin: 40px auto;
        transform: scale(0.8);
    }

    /* Sections - Mobile */
    section {
        padding: 40px 16px !important;
    }

    /* Grid Layouts - Stack on Mobile */
    .grid,
    .features-grid,
    .cards-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .grid-item,
    .feature-card,
    .card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* Typography - Mobile */
    h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    h2 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }

    h3 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    p {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    /* Buttons - Mobile (Touch-Friendly) */
    button,
    .button,
    .btn,
    .demo-button,
    .cta-button {
        min-height: 48px;
        padding: 12px 24px !important;
        font-size: 16px !important;
        border-radius: 8px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    button:active,
    .button:active,
    .btn:active {
        transform: scale(0.98);
    }

    /* Workflow Section - Mobile (getkoda.io style) */
    .workflow-section {
        padding: 64px 12px !important;
        background-color: #0E0E0E;
        position: relative;
    }

    .workflow-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 41px;
        background: linear-gradient(180deg, #0E0E0E 0%, rgba(14, 14, 14, 0) 100%);
        z-index: 1;
    }

    .workflow-section h2 {
        font-size: 28px !important;
        line-height: 30.8px !important;
        font-weight: 500;
        text-align: center;
        margin-bottom: 48px !important;
        padding: 0 !important;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .workflow-section h2 span:first-child {
        color: white;
        text-transform: capitalize;
    }

    .workflow-section h2 .workflow-subtitle {
        color: rgba(255, 255, 255, 0.6);
        text-transform: capitalize;
    }

    .workflow-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
        padding: 0 !important;
        max-width: 100%;
    }

    .workflow-card {
        background: transparent;
        padding: 0 !important;
        border-radius: 0;
        width: 100% !important;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .workflow-card:nth-child(2),
    .workflow-card:nth-child(3) {
        background: transparent;
    }

    .workflow-image {
        width: 85% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 0 !important;
        height: auto !important;
        object-fit: contain;
        position: relative;
        border-radius: 0;
        display: block;
    }

    .workflow-card h3 {
        font-size: 24px !important;
        line-height: 26.4px !important;
        font-weight: 500;
        color: white;
        margin-bottom: 16px !important;
        text-transform: capitalize;
        text-align: center;
    }

    .workflow-card p {
        font-size: 16px !important;
        line-height: 24px !important;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 0 !important;
        text-align: center;
    }

    .workflow-card .demo-button {
        display: none !important;
    }

    .workflow-cta {
        display: none !important;
    }

    /* Workflow Divider - Mobile Only */
    .workflow-divider {
        border: none;
        height: 1px;
        width: 80%;
        margin: 64px auto;
        background-color: rgba(255, 255, 255, 0.08);
        display: block;
    }

    /* How It Works Section - Mobile */
    .how-it-works-section .text38 {
        display: none !important;
    }

    .how-it-works-section .container2 {
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        margin: 0 auto;
    }

    .how-it-works-section .text36 {
        align-items: center !important;
        text-align: center;
        width: 100%;
    }

    .how-it-works-section .text9 {
        text-align: center;
        width: 100%;
    }

    .how-it-works-section .homepage-block {
        margin: 0 auto !important;
        display: flex;
        justify-content: center;
    }

    .how-it-works-section .iconixtolinearcloud-transfer,
    .how-it-works-section img[alt*="icon"],
    .how-it-works-section img[alt*="Icon"],
    .how-it-works-section img[alt*="Upload"],
    .how-it-works-section img[alt*="Ask"],
    .how-it-works-section img[alt*="Get"],
    .how-it-works-section img[alt*="Stay"] {
        margin: 0 auto !important;
        display: block !important;
    }

    /* Add arrows between steps (except before first) */
    /* Arrow before "Ask Koda Anything" (2nd step) */
    .how-it-works-section .box6:first-child .container2:nth-child(2)::before,
    /* Arrow before "Stay Organized" (4th step) */
    .how-it-works-section .box6:nth-child(2) .container2:nth-child(2)::before {
        content: '↓' !important;
        display: block !important;
        text-align: center !important;
        font-size: 48px !important;
        color: rgba(255, 255, 255, 0.5) !important;
        margin: 40px auto !important;
        padding: 20px 0 !important;
        line-height: 1 !important;
        width: 100% !important;
        position: relative !important;
        z-index: 10 !important;
    }

    /* Arrow between the two box6 elements (before "Get Instant, Private Answers") */
    .how-it-works-section .box6:nth-child(2)::before {
        content: '↓' !important;
        display: block !important;
        text-align: center !important;
        font-size: 48px !important;
        color: rgba(255, 255, 255, 0.5) !important;
        margin: 40px auto !important;
        padding: 20px 0 !important;
        line-height: 1 !important;
        width: 100% !important;
        position: relative !important;
        z-index: 10 !important;
    }

    /* Ensure box6 is vertical on mobile */
    .how-it-works-section .box6 {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
    }

    /* Smart Secure Section - Mobile - Hide original content */
    .smart-secure-section {
        display: none !important;
    }

    /* Hide CTA block on mobile (appears after signup form) */
    .homepage-cta-block {
        display: none !important;
    }

    /* New Mobile Section - Your Files. Your AI. Your Rules */
    .smart-secure-mobile-new {
        width: 100%;
        height: 100%;
        padding-left: 12px;
        padding-right: 12px;
        padding-top: 64px;
        padding-bottom: 64px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 48px;
        display: inline-flex;
        background-color: #121212;
        position: relative;
        z-index: 1;
    }

    .smart-secure-mobile-new .header-content {
        align-self: stretch;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 24px;
        display: flex;
    }

    .smart-secure-mobile-new .title {
        align-self: stretch;
        text-align: center;
    }

    .smart-secure-mobile-new .title .text-muted {
        color: rgba(255, 255, 255, 0.60);
        font-size: 28px;
        font-family: Plus Jakarta Sans;
        font-weight: 500;
        text-transform: capitalize;
        line-height: 30.80px;
        word-wrap: break-word;
    }

    .smart-secure-mobile-new .title .text-white {
        color: white;
        font-size: 28px;
        font-family: Plus Jakarta Sans;
        font-weight: 500;
        text-transform: capitalize;
        line-height: 30.80px;
        word-wrap: break-word;
    }

    .smart-secure-mobile-new .description {
        align-self: stretch;
        text-align: center;
        color: rgba(255, 255, 255, 0.80);
        font-size: 16px;
        font-family: Plus Jakarta Sans;
        font-weight: 400;
        line-height: 24px;
        word-wrap: break-word;
    }

    .smart-secure-mobile-new .image-container {
        align-self: stretch;
        height: 491px;
        position: relative;
    }

    /* Chaos Section - Mobile (getkoda.io style) */
    .chaos-section {
        padding: 64px 12px !important;
        background-color: #131210;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }

    .chaos-header {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        margin: 0 !important;
    }

    .chaos-header h2 {
        width: 100%;
        text-align: center;
        font-size: 28px !important;
        line-height: 30.8px !important;
        font-weight: 500;
        margin: 0 !important;
    }

    .chaos-header h2 .chaos-subtitle {
        color: rgba(255, 255, 255, 0.6);
        text-transform: capitalize;
    }

    .chaos-header h2 span:not(.chaos-subtitle) {
        color: white;
        text-transform: capitalize;
    }

    .chaos-header .subtitle {
        width: 100%;
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
        font-size: 16px !important;
        line-height: 24px !important;
        font-weight: 400;
        margin: 0 !important;
    }

    .chaos-grid {
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        grid-template-columns: none !important;
    }

    .chaos-text-left,
    .chaos-text-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .chaos-text-left p,
    .chaos-text-right p {
        width: 100%;
        text-align: center;
        color: white;
        font-size: 18px !important;
        line-height: 26px !important;
        font-weight: 400;
        margin: 0 !important;
    }

    .chaos-image-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 26px;
        padding: 49px 58px;
        position: relative;
    }

    .chaos-image-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(19, 18, 16, 0) 0%, #131210 80%);
        border-radius: 9999px;
        z-index: 1;
    }

    .chaos-image-container img {
        position: relative;
        z-index: 0;
        width: 100%;
        height: auto;
    }

    /* Forms - Mobile */
    input,
    textarea,
    select {
        min-height: 48px;
        padding: 12px 16px !important;
        font-size: 16px !important; /* Prevents iOS zoom on focus */
        border-radius: 8px;
    }

    /* Footer - Mobile */
    footer {
        padding: 40px 16px !important;
    }

    footer .footer-content {
        flex-direction: column !important;
        gap: 30px !important;
    }

    footer .footer-column {
        width: 100% !important;
    }

    /* Hide desktop-only elements */
    .desktop-only {
        display: none !important;
    }

    /* Show mobile-only elements */
    .mobile-only {
        display: flex !important;
    }

    .mobile-menu.mobile-only {
        display: none !important;
    }

    .mobile-menu.mobile-only.active {
        display: block !important;
    }

    /* Safe Areas (iOS) */
    .hero-section,
    header,
    footer {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    header {
        padding-top: max(12px, env(safe-area-inset-top));
    }

    footer {
        padding-bottom: max(40px, env(safe-area-inset-bottom));
    }

    /* Touch Optimizations */
    a,
    button,
    input,
    select,
    textarea {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        touch-action: manipulation;
    }

    /* Prevent text selection on touch */
    .no-select {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    /* Images - Responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Smooth Scrolling */
    html {
        scroll-behavior: smooth;
    }
}

/* ===== SMALL MOBILE (320px - 480px) ===== */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 52px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    p {
        font-size: 15px !important;
    }

    section {
        padding: 32px 12px !important;
    }

    .phone-container {
        transform: scale(0.7);
    }
}

/* ===== TABLET (768px - 1023px) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-section {
        padding: 120px 40px 60px 40px;
    }

    .hero-content h1 {
        font-size: 42px !important;
    }

    section {
        padding: 60px 40px !important;
    }

    /* Grid - 2 columns on tablet */
    .grid,
    .features-grid,
    .cards-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }

    .nav-links a {
        font-size: 15px;
        margin: 0 12px;
    }
}

/* ===== DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {
    /* Desktop styles (already defined above) */
    .mobile-only {
        display: none !important;
    }

    .desktop-only {
        display: block !important;
    }

    .mobile-menu-toggle {
        display: none !important;
    }

    .nav-links {
        display: flex !important;
    }
}

/* ===== LANDSCAPE MOBILE (Mobile in landscape) ===== */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        height: auto;
    }

    .phone-container {
        transform: scale(0.6);
    }
}

/* ===== HIGH DPI SCREENS (Retina) ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Optimize for high-res displays if needed */
}

/* ===== PRINT STYLES ===== */
@media print {
    header,
    footer,
    .no-print {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}

/* ===== REDUCED MOTION (Accessibility) ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* Get Started button text must be black */
.demo-button { color: #000 !important; }

