/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Container */
.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    overflow: hidden;
}

/* Background Image */
.bg-image {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

/* Header */
.header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50.6px 240px 0;
    z-index: 100;
    max-width: 1920px;
    margin: 0 auto;
}

.logo {
    width: 173.627px;
    height: 60.372px;
    z-index: 101;
}

.logo img {
    width: 100%;
    height: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* Navigation */
.nav-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}

.bitcoin-nav {
    position: relative;
}

.bitcoin-icon {
    width: 20px;
    height: 20px;
}

.bitcoin-icon img {
    width: 100%;
    height: 100%;
}

.dropdown-icon {
    width: 24px;
    height: 24px;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: rgba(20, 30, 40, 0.95);
    border-radius: 8px;
    padding: 12px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 24px;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(250, 102, 15, 0.2);
    color: #fa660f;
    padding-left: 28px;
}

/* Country Selector */
.country-selector {
    margin-left: 20px;
}

.flag-container {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 240px;
    z-index: 5;
    max-width: 1920px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.hero-main {
    flex: 1;
}

.robot-arms-decoration {
    position: relative;
    width: 500px;
    height: 500px;
    flex-shrink: 0;
    z-index: 1;
}

.robot-arms-decoration.left {
    order: 0;
}

.robot-arms-decoration.right {
    order: 2;
    /* transform: scaleX(-1); */
}

.robot-arms-decoration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-title {
    max-width: 995px;
    font-size: 98px;
    font-weight: 700;
    line-height: 99px;
    letter-spacing: -1.5px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.white-text {
    color: #ffffff;
}

.orange-text {
    color: #fa660f;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.btn-primary {
    width: 212px;
    height: 64px;
    background-color: #fa660f;
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 0;
}

.btn-primary a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ffffff;
    text-decoration: none;
}

.btn-primary a:hover,
.btn-primary a:visited,
.btn-primary a:active,
.btn-primary a:focus {
    color: #ffffff;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #e05500;
}

.stock-ticker {
    width: 203.412px;
    height: 65px;
    border: 2px solid #fa660f;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stock-ticker span {
    font-size: 39px;
    font-weight: 900;
    color: #fa660f;
    line-height: 0;
}

/* Download Links */
.download-links {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.link-item:first-child img {
    width: 17px;
    height: 20px;
}

.link-item:nth-child(2) img {
    width: 20px;
    height: 20px;
}

.link-item a {
    font-size: 22px;
    font-weight: 500;
    color: #fa660f;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
    line-height: 44px;
    letter-spacing: 1.5px;
}

.link-item a:hover {
    color: #e05500;
}

/* Trusted Companies Section */
.trusted-companies {
    position: relative;
    padding: 0px 240px 80px;
    max-width: 1920px;
    margin: 0 auto;
    z-index: 5;
}

.trusted-header {
    display: flex;
    
    gap: 40px;
    margin-bottom: 60px;
}

.trusted-text {
    position: relative;
    font-size: 22px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: -0.8px;
    white-space: nowrap;
    margin: 0;
}

.divider-line {
    position: relative;
    flex: 1;
    height: 1px;
}

.divider-line img {
    width: 100%;
    height: 100%;
}

/* Company Logos */
.company-logos {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 75px;
    opacity: 0.3;
    flex-wrap: wrap;
}

.logo-amart {
    width: 154.102px;
    height: 81.583px;
}

.logo-bannos {
    width: 184.981px;
    height: 57.55px;
}

.logo-binglee {
    width: 178.873px;
    height: 34.869px;
}

.logo-mtbeerwah {
    width: 177.944px;
    height: 60.775px;
}

.logo-urdrive {
    width: 153.189px;
    height: 42.127px;
}

/* Our Businesses Section */
.our-businesses {
    position: relative;
    background: linear-gradient(to bottom, #000000 0%, #080d12 30%, #0c1823 100%);
    padding: 100px 0;
    z-index: 5;
}

.businesses-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 240px;
}

/* Businesses Header */
.businesses-header {
    text-align: center;
    margin-bottom: 100px;
}

.businesses-ticker {
    display: inline-block;
    border: 2px solid #fa660f;
    border-radius: 4px;
    padding: 12px 40px;
    margin-bottom: 40px;
}

.businesses-ticker span {
    font-size: 55px;
    font-weight: 900;
    color: #fa660f;
    letter-spacing: -1px;
}

.businesses-title {
    font-size: 70px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.businesses-subtitle {
    font-size: 25px;
    font-weight: 400;
    color: #ffffff;
    line-height: 51px;
    margin: 0;
}

/* Business Card */
.business-card {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 250px;
    position: relative;
}

.business-card:last-child {
    /* margin-bottom: 0; */
}

.business-card:last-child .business-product-image {
    margin-left: 15px;
}

.business-content {
    flex: 0 0 550px;
    z-index: 2;
}

.business-logo {
    margin-bottom: 30px;
    height: 60px;
    display: flex;
    align-items: center;
}

.business-logo img {
    height: 100%;
    width: auto;
    max-width: 280px;
}

.business-logo.shred2u-logo img {
    height: 52px;
}

.business-description {
    font-size: 27px;
    font-weight: 400;
    color: #ffffff;
    line-height: 47px;
    margin: 0 0 40px 0;
}

.business-btn {
    display: inline-block;
    background-color: #fa660f;
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    padding: 15px 50px;
    border-radius: 7px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.business-btn:hover {
    background-color: #e05500;
}

/* Business Visual */
.business-visual {
    flex: 1;
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.business-bg-image {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0.4;
}

.business-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.business-product-image {
    position: relative;
    z-index: 2;
    height: 585px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 170px;
    margin-left: 50px;
}

.business-product-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.business-product-image.zoom2u-image {
    height: 585px;
}

.business-product-image.shred2u-image {
    height: 585px;
}

/* Investor Relations Section */
.investor-relations {
    position: relative;
    background-color: #2b93ff;
    padding: 120px 240px;
    /* padding-bottom: 0px; */
    z-index: 5;
}

.investor-container {
    max-width: 1440px;
    margin: 0 auto;
}

.investor-title {
    font-size: 70px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin: 0 0 50px 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.investor-intro {
    max-width: 1260px;
    margin: 0 auto 100px;
    font-size: 25px;
    font-weight: 400;
    color: #ffffff;
    line-height: 38px;
    letter-spacing: 0.5px;
}

.investor-intro p {
    margin-bottom: 20px;
}

.investor-intro strong {
    font-weight: 700;
}

/* Investor Resources Grid */
.investor-resources-container {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 0;
    margin-bottom: 80px;
}

.investor-resources {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 80px;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    /* cursor: pointer; */
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.resource-item:nth-child(3n) {
    border-right: none;
}

.resource-item:nth-child(4),
.resource-item:nth-child(5),
.resource-item:nth-child(6) {
    /* border-bottom: none; */
}

.resource-item:hover {
    background-color: #f8f9fa;
}

.resource-item img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.resource-item h3 {
    font-size: 27px;
    font-weight: 700;
    color: #4b5054;
    margin: 0;
    line-height: 1.28;
    letter-spacing: 0.135px;
}

/* Get to Know the Team Button */
.team-button-container {
    padding: 30px 40px;
    /* display: flex;
    justify-content: center; */
}

.team-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: #2B93FF;
    color: #ffffff;
    font-size: 27px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 25px 50px;
    border-radius: 4px;
    text-decoration: none;
    margin: 0;
    transition: all 0.3s ease;
    border: none;
}

.team-button:hover {
    background-color: #1a7fd9;
}

.team-button img {
    width: 37px;
    height: 37px;
}

/* Investment Methodology */
.investment-methodology {
    margin-top: 200px;
    margin-bottom: 200px;
}

.methodology-title {
    font-size: 37px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin: 0 0 150px 0;
    letter-spacing: 0.5px;
    line-height: 38px;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 80px;
    max-width: 1260px;
    margin: 0 auto;
}

.methodology-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.methodology-item .check-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.methodology-item p {
    font-size: 21px;
    font-weight: 400;
    color: #ffffff;
    line-height: 34px;
    margin: 0;
}

/* Closing Statement */
.investor-closing {
    text-align: center;
    margin-bottom: 60px;
}

.investor-closing p {
    font-size: 20px;
    font-weight: 500;
    color: #ebf1f7;
    line-height: 37px;
    letter-spacing: 0.4px;
    margin: 0;
}

/* Share Price Section */
.share-price-section {
    position: relative;
    /* background-color: #2b93ff; */
    background-color: #ebf1f7;
    /* padding: 0 240px 120px; */
    z-index: 5;
}

.share-price-container {
    max-width: 1440px;
    margin: 0 auto;
    transform: translateY(-110px);
}

/* Share Price Widget */
.share-price-widget {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 980px;
    margin: 0 auto;
}

.share-price-info {
    border-right: 1px solid #C3CDD9;
    padding-right: 50px;
}

.share-label {
    font-size: 14px;
    font-weight: 500;
    color: #4b5054;
    text-transform: uppercase;
    letter-spacing: 0.14px;
    margin: 0 0 10px 0;
}

.share-value {
    font-size: 48px;
    font-weight: 600;
    color: #2b93ff;
    letter-spacing: -0.96px;
    margin: 0;
    line-height: 1.01;
}

.newsletter-signup {
    flex: 1;
}

.newsletter-signup p {
    font-size: 14.2px;
    font-weight: 400;
    color: #353b48;
    line-height: 1.3;
    letter-spacing: 0.142px;
    margin: 0 0 15px 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    height: 70px;
    padding: 0 15px;
    font-size: 20px;
    font-weight: 300;
    color: #000000;
    /* border: 1px solid #e5e5e5; */
    border: none;
    border-radius: 2px;
    background-color: #f5f5f5;
}

.newsletter-form input::placeholder {
    color: rgba(0, 0, 0, 0.36);
}

.newsletter-form button {
    height: 70px;
    padding: 0 30px;
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    background-color: #2b93ff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #1a7fd9;
}

/* Contact Section */
.contact-section {
    position: relative;
    background-color: #ebf1f7;
    padding: 120px 240px;
    padding-top: 0px;
    z-index: 5;
}

.contact-container {
    max-width: 1440px;
    margin: 0 auto;
}

/* Contact Top Section */
.contact-top {
    max-width: 980px;
    margin: 0 auto 200px;
}

.contact-intro {
    margin-bottom: 120px;
}

.contact-title {
    font-size: 50px;
    font-weight: 700;
    color: #0c1823;
    margin: 0 0 20px 0;
    line-height: 1.39;
}

.contact-subtitle {
    font-size: 24px;
    font-weight: 300;
    color: #0c1823;
    margin: 0;
    line-height: 1.12;
    letter-spacing: -0.12px;
}

.contact-cards {
    display: flex;
    gap: 100px;
    flex: 1;
}

.contact-card {
    flex: 1;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0c1823;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    letter-spacing: -0.12px;
    line-height: 1.34;
}

.contact-card p {
    font-size: 18px;
    font-weight: 300;
    color: #0c1823;
    margin: 0 0 15px 0;
    line-height: 1.28;
}

.contact-link {
    font-size: 19px;
    font-weight: 700;
    color: #2b93ff;
    text-decoration: none;
    letter-spacing: 0.095px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1a7fd9;
}

/* Contact Middle Section */
.contact-middle {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

/* .contact-middle::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -50px;
    transform: translateX(-50%);
    width: 1px;
    height: 1421px;
    background: linear-gradient(to bottom, transparent, #c3cdd9 10%, #c3cdd9 90%, transparent);
    pointer-events: none;
} */

.contact-center-title {
    font-size: 50px;
    font-weight: 900;
    color: #0c1823;
    margin: 0 0 40px 0;
    letter-spacing: -1px;
    line-height: normal;
}

.signup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background-color: transparent;
    border: 1.4px solid #0c1823;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 400;
    color: #0c1823;
    text-decoration: none;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.signup-button:hover {
    background-color: #0c1823;
    color: #ffffff;
}

.signup-button:hover img {
    filter: brightness(0) invert(1);
}

.signup-button img {
    width: 25px;
    height: 25px;
    transition: filter 0.3s ease;
}

/* Video Section */
.video-section {
    position: relative;
    width: 100%;
    max-width: 1432px;
    margin: 0 auto;
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 48.5%;
    background-color: #0c1823;
    border-radius: 8px;
    overflow: hidden;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button img {
    width: 100%;
    height: 100%;
}

/* Letter from the Chair Section */
.letter-from-chair {
    position: relative;
    background-color: #ffffff;
    padding: 120px 240px;
    z-index: 5;
}

.letter-content {
    max-width: 1168px;
    margin: 0 auto;
}

.letter-heading {
    font-size: 30px;
    font-weight: 700;
    line-height: 43px;
    letter-spacing: 0.5px;
    margin-bottom: 80px;
    color: #000000;
}

.letter-body {
    font-size: 25px;
    font-weight: 400;
    line-height: 37px;
    color: #000000;
}

.letter-body p {
    margin-bottom: 20px;
}

.letter-body h3 {
    font-size: 25px;
    font-weight: 700;
    line-height: 37px;
    color: #000000;
    margin-top: 50px;
    margin-bottom: 10px;
}

.signature-block {
    margin-top: 60px;
    margin-bottom: 0;
}

.signature {
    width: 290px;
    height: auto;
    margin-bottom: 20px;
}

.signatory-name,
.signatory-title,
.signatory-company {
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;
    color: #000000;
    margin: 0 !important;
}

/* Footer Section */
.footer {
    position: relative;
    background-color: #000000;
    padding: 50px 240px;
    z-index: 10;
    margin-top: auto;
    overflow: hidden;
}

.footer-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.footer-shape-1,
.footer-shape-2 {
    position: absolute;
    width: auto;
    height: 100%;
    opacity: 0.3;
}

.footer-shape-1 {
    left: 0;
    top: 0;
}

.footer-shape-2 {
    right: 0;
    top: 0;
}

.footer-content {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
    position: relative;
    z-index: 2;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo-main {
    width: 157.77px;
    height: 54.502px;
}

.footer-business-links {
    display: flex;
    gap: 15px;
}

.footer-business-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-business-links a:hover {
    color: #fa660f;
}

.footer-bitcoin-icon {
    width: 92.269px;
    height: 18.69px;
    margin-top: 10px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    color: #fa660f;
    line-height: 1.34;
    margin: 0;
}

.footer-text {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 27px;
    letter-spacing: -0.08px;
    margin: 0;
    max-width: 344px;
}

/* Tablet Responsive (768px - 1440px) */
@media screen and (max-width: 1440px) {
    .header {
        padding: 40px 60px 0;
    }
    
    .hero {
        padding: 80px 60px;
    }

    .hero-content {
        gap: 30px;
    }

    .robot-arms-decoration {
        width: 350px;
        height: 350px;
    }

    .hero-title {
        font-size: 70px;
        line-height: 75px;
    }
    
    .trusted-companies {
        padding: 60px 60px 40px;
    }

    /* Our Businesses - Tablet */
    .businesses-container {
        padding: 0 60px;
    }

    .businesses-ticker span {
        font-size: 45px;
    }

    .businesses-title {
        font-size: 50px;
    }

    .businesses-subtitle {
        font-size: 22px;
        line-height: 40px;
    }

    .business-card {
        gap: 50px;
        margin-bottom: 160px;
    }

    .business-content {
        flex: 0 0 450px;
    }

    .business-description {
        font-size: 22px;
        line-height: 38px;
    }

    .business-visual {
        height: 400px;
    }

    .business-product-image {
        height: 480px;
    }

    .business-product-image.zoom2u-image {
        height: 480px;
    }

    .business-product-image.shred2u-image {
        height: 520px;
    }

    /* Investor Relations - Tablet */
    .investor-relations {
        padding: 80px 60px;
    }

    .investor-title {
        font-size: 50px;
    }

    .investor-intro {
        font-size: 22px;
        line-height: 34px;
        margin-bottom: 60px;
    }

    .investor-resources {
        gap: 0;
    }

    .resource-item {
        padding: 30px 20px;
    }

    .resource-item img {
        width: 60px;
        height: 60px;
    }

    .resource-item h3 {
        font-size: 22px;
    }

    .team-button-container {
        padding: 25px 30px;
    }

    .team-button {
        font-size: 22px;
        padding: 20px 40px;
    }

    .methodology-title {
        font-size: 32px;
    }

    .methodology-grid {
        gap: 40px 60px;
    }

    .methodology-item .check-icon {
        width: 40px;
        height: 40px;
    }

    .methodology-item p {
        font-size: 18px;
        line-height: 30px;
    }

    .investor-closing {
        margin-bottom: 60px;
    }

    .investor-closing p {
        font-size: 18px;
        line-height: 32px;
    }

    /* Share Price Section - Tablet */
    .share-price-section {
        padding: 0 60px 80px;
    }

    .share-price-container {
        transform: translateY(-80px);
    }

    .share-price-widget {
        padding: 30px 40px;
        gap: 40px;
    }

    /* Contact Section - Tablet */
    .contact-section {
        padding: 80px 60px;
        padding-top: 0px;
    }

    .contact-top {
        margin-bottom: 80px;
    }

    .contact-intro {
        margin-bottom: 50px;
    }

    .contact-title {
        font-size: 40px;
    }

    .contact-subtitle {
        font-size: 20px;
    }

    .contact-cards {
        gap: 60px;
    }

    .contact-card h3 {
        font-size: 20px;
    }

    .contact-card p {
        font-size: 16px;
    }

    .contact-link {
        font-size: 17px;
    }

    .contact-middle::before {
        height: 1200px;
    }

    .contact-center-title {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .signup-button {
        font-size: 18px;
        padding: 15px 35px;
    }

    .video-placeholder {
        padding-bottom: 56.25%;
    }

    .play-button {
        width: 100px;
        height: 100px;
    }

    .letter-from-chair {
        padding: 80px 60px;
    }

    .letter-body {
        font-size: 20px;
        line-height: 32px;
    }

    .letter-body h3 {
        font-size: 22px;
    }

    .footer {
        padding: 40px 60px;
    }

    .footer-content {
        gap: 60px;
    }
}

/* Mobile Responsive (max-width: 768px) */
@media screen and (max-width: 768px) {
    /* Container */
    .container {
        min-height: auto;
    }

    /* Header */
    .header {
        padding: 20px;
        flex-wrap: wrap;
    }

    .logo {
        /* width: 120px; */
        
    }

    /* Hamburger Menu */
    .hamburger {
        display: flex;
        z-index: 99999999999;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: rgba(20, 30, 40, 0.98);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 0px;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
        z-index: 9999;
    }

    .nav-item {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .bitcoin-nav{
        flex-direction: row;
    }

    .has-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        background: transparent;
        box-shadow: none;
        padding: 10px 0 0 20px;
        min-width: auto;
    }

    .dropdown-item {
        padding: 10px 0;
    }

    .dropdown-icon {
        display: none;
    }

    .country-selector {
        margin-left: 0;
        flex-direction: row;
        align-items: center;
    }

    /* Hero Section */
    .hero {
        padding: 40px 20px;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .robot-arms-decoration {
        width: 100%;
        max-width: 300px;
        height: 300px;
        order: 1;
        margin: 0 auto;
    }

    .hero-main {
        order: 0;
    }

    .hero-title {
        font-size: 40px;
        line-height: 45px;
        max-width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .btn-primary,
    .stock-ticker {
        width: 100%;
    }

    /* Our Businesses - Mobile */
    .our-businesses {
        padding: 60px 0;
    }

    .businesses-container {
        padding: 0 20px;
    }

    .businesses-header {
        margin-bottom: 60px;
    }

    .businesses-ticker {
        padding: 10px 30px;
        margin-bottom: 30px;
    }

    .businesses-ticker span {
        font-size: 32px;
    }

    .businesses-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .businesses-subtitle {
        font-size: 18px;
        line-height: 32px;
    }

    .business-card {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 120px;
    }

    .business-content {
        flex: 1;
        width: 100%;
    }

    .business-logo {
        height: 50px;
        margin-bottom: 20px;
    }

    .business-logo img {
        max-width: 200px;
    }

    .business-logo.shred2u-logo img {
        height: 45px;
    }

    .business-description {
        font-size: 18px;
        line-height: 32px;
        margin-bottom: 30px;
    }

    .business-btn {
        width: 100%;
        text-align: center;
        padding: 15px 30px;
        font-size: 20px;
    }

    .business-visual {
        width: 100%;
        height: 350px;
    }

    .business-product-image {
        height: 400px;
    }

    .business-product-image.zoom2u-image {
        height: 400px;
    }

    .business-product-image.shred2u-image {
        height: 450px;
    }

    /* Investor Relations - Mobile */
    .investor-relations {
        padding: 60px 20px;
    }

    .investor-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .investor-intro {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 40px;
    }

    .investor-resources {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .resource-item {
        padding: 25px 20px;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }

    .resource-item:last-child {
        border-bottom: none;
    }

    .resource-item img {
        width: 50px;
        height: 50px;
    }

    .resource-item h3 {
        font-size: 20px;
    }

    .team-button-container {
        padding: 20px;
    }

    .team-button {
        font-size: 18px;
        padding: 18px 30px;
        gap: 12px;
    }

    .team-button img {
        width: 30px;
        height: 30px;
    }

    .methodology-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .methodology-item .check-icon {
        width: 35px;
        height: 35px;
    }

    .methodology-item p {
        font-size: 16px;
        line-height: 26px;
    }

    .investor-closing {
        margin-bottom: 40px;
    }

    .investor-closing p {
        font-size: 16px;
        line-height: 28px;
    }

    /* Share Price Section - Mobile */
    .share-price-section {
        padding: 0 20px 60px;
    }

    .share-price-container {
        transform: translateY(-60px);
    }

    .share-price-widget {
        flex-direction: column;
        padding: 25px 20px;
        gap: 25px;
    }

    .share-price-info {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding-right: 0;
        padding-bottom: 25px;
        width: 100%;
    }

    .share-value {
        font-size: 40px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        min-height: 70px;
    }

    /* Contact Section - Mobile */
    .contact-section {
        padding: 60px 20px;
        padding-top: 0px;
    }

    .contact-top {
        margin-bottom: 60px;
    }

    .contact-intro {
        margin-bottom: 40px;
    }

    .contact-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .contact-subtitle {
        font-size: 18px;
    }

    .contact-cards {
        flex-direction: column;
        gap: 40px;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .contact-card p {
        font-size: 15px;
    }

    .contact-link {
        font-size: 16px;
    }

    .contact-middle {
        margin-bottom: 60px;
    }

    .contact-middle::before {
        height: 900px;
    }

    .contact-center-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .signup-button {
        font-size: 16px;
        padding: 14px 25px;
        letter-spacing: 2px;
    }

    .signup-button img {
        width: 20px;
        height: 20px;
    }

    .play-button {
        width: 80px;
        height: 80px;
    }

    /* Letter from Chair */
    .letter-from-chair {
        padding: 60px 20px;
    }

    .letter-heading {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 40px;
    }

    .letter-body {
        font-size: 16px;
        line-height: 26px;
    }

    .letter-body h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .signature {
        width: 200px;
    }

    .signatory-name,
    .signatory-title,
    .signatory-company {
        font-size: 16px;
        line-height: 22px;
    }

    /* Footer */
    .footer {
        padding: 40px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-logo-section {
        width: 100%;
    }

    .footer-business-links {
        flex-wrap: wrap;
    }

    .footer-section {
        width: 100%;
    }

    .footer-text {
        font-size: 14px;
        line-height: 22px;
    }

    .footer-shape-1,
    .footer-shape-2 {
        display: none;
    }
}

/* Small Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 32px;
        line-height: 36px;
    }

    .btn-primary {
        font-size: 20px;
        height: 56px;
    }

    .stock-ticker span {
        font-size: 32px;
    }

    /* Our Businesses - Small Mobile */
    .businesses-ticker span {
        font-size: 28px;
    }

    .businesses-title {
        font-size: 28px;
    }

    .businesses-subtitle {
        font-size: 16px;
        line-height: 28px;
    }

    .business-description {
        font-size: 16px;
        line-height: 28px;
    }

    .business-btn {
        font-size: 18px;
    }

    .business-visual {
        height: 300px;
    }

    .business-product-image {
        height: 350px;
    }

    .business-product-image.zoom2u-image {
        height: 350px;
    }

    .business-product-image.shred2u-image {
        height: 400px;
    }

    /* Investor Relations - Small Mobile */
    .investor-title {
        font-size: 30px;
    }

    .investor-intro {
        font-size: 16px;
        line-height: 26px;
    }

    .methodology-title {
        font-size: 22px;
    }

    .methodology-item p {
        font-size: 15px;
        line-height: 24px;
    }

    .share-value {
        font-size: 36px;
    }

    .newsletter-form input {
        font-size: 16px;
    }

    /* Contact Section - Small Mobile */
    .contact-title {
        font-size: 28px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .contact-center-title {
        font-size: 24px;
    }

    .signup-button {
        font-size: 14px;
        padding: 12px 20px;
    }

    .play-button {
        width: 70px;
        height: 70px;
    }

    .letter-body {
        font-size: 14px;
        line-height: 24px;
    }

    .letter-body h3 {
        font-size: 16px;
        line-height: 24px;
    }
}
