/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Slab', serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000 url('background-texture.png') repeat;
    background-size: 400px 400px;
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0px;
}

.logo-circle {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.logo-circle svg,
.logo-circle img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    gap: 0px;
    align-items: flex-start;
}

.logo-text-image {
    height: 120px;
    width: auto;
    display: block;
    position: relative;
    left: 0px;
    top: 2px;
}

.logo-text-slab {
    display: flex;
    flex-direction: column;
    font-family: 'Roboto Slab', serif;
    line-height: 1;
    position: relative;
    left: 0px;
}

.logo-text-top {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
}

.logo-text-bottom {
    font-size: 0.85rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2196F3;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
}

.logo-link:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2196F3;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2196F3;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    z-index: 10000;
    position: relative;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    z-index: 2000;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(33, 150, 243, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 80px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    color: #2196F3;
    padding-left: 10px;
}

/* Hamburger Menu */
.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Slide-out Menu */
.slide-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.slide-menu.active {
    right: 0;
}

.slide-menu-content {
    padding: 80px 40px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slide-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-menu-header h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Roboto Slab', serif;
}

.close-menu {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

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

.slide-menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slide-menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.slide-menu-item:hover {
    background: rgba(33, 150, 243, 0.15);
    border-color: rgba(33, 150, 243, 0.5);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
}

.slide-menu-item i {
    font-size: 1.4rem;
    color: #2196F3;
    width: 30px;
    text-align: center;
}

.slide-menu-item span {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-family: 'Roboto Slab', serif;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1a1a2e;
}

.modal-body {
    padding: 30px 40px 40px;
}

.founder-section {
    margin-bottom: 40px;
}

.founder-info {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(33, 150, 243, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.founder-image {
    width: 80px;
    height: 80px;
    background: rgba(33, 150, 243, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #2196F3;
    flex-shrink: 0;
}

.founder-image i {
    font-size: 2rem;
    color: #2196F3;
}

.founder-details h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.founder-title {
    font-size: 1.1rem;
    color: #2196F3;
    font-weight: 600;
    margin-bottom: 5px;
}

.founder-education {
    font-size: 1rem;
    color: #666;
    font-weight: 300;
}

.about-story {
    line-height: 1.8;
}

.about-story p {
    font-size: 1.15rem;
    color: #000000 !important;
    margin-bottom: 22px;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.02em;
}

.about-story ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.about-story li {
    padding: 10px 0;
    color: #000000 !important;
    position: relative;
    padding-left: 25px;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.02em;
}

.about-story li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2196F3;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-story strong {
    color: #000000 !important;
    font-weight: 700;
}

.modal-body {
    padding: 30px 40px 40px;
    color: #000000 !important;
}

.modal-body * {
    color: #000000 !important;
}

/* About Page Styles */
.about-page-section {
    padding: 140px 0 80px;
    min-height: 100vh;
    background: #000000 url('background-texture.png') repeat;
    background-size: 400px 400px;
}

.about-page-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.about-page-header {
    padding: 40px 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.05) 100%);
}

.about-page-header .founder-section {
    margin-bottom: 0;
}

.about-page-header .founder-education {
    color: #666 !important;
}

.about-page-header .founder-details h3 {
    color: #1a1a2e !important;
}

.about-page-header .founder-title {
    color: #2196F3 !important;
}

.about-page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
    text-align: center;
    font-family: 'Roboto Slab', serif;
}

.about-page-body {
    padding: 40px 50px 50px;
    color: #000000;
}

.about-page-body * {
    color: #000000;
}

/* About Page - Mobile Styles */
@media (max-width: 768px) {
    .about-page-section {
        padding: 120px 20px 60px;
    }
    
    .about-page-content {
        max-width: 100%;
        margin: 0 20px;
    }
    
    .about-page-header {
        padding: 30px 30px;
    }
    
    .about-page-body {
        padding: 30px 30px 40px;
    }
    
    .founder-info {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .founder-details h3 {
        font-size: 1.5rem;
    }
    
    .founder-title {
        font-size: 1rem;
    }
    
    .founder-education {
        font-size: 0.9rem;
    }
    
    .about-story p {
        font-size: 1.05rem;
        line-height: 1.85;
        letter-spacing: 0.02em;
    }
    
    .about-story li {
        font-size: 1.05rem;
        line-height: 1.85;
        letter-spacing: 0.02em;
    }
}

/* About Page - Mobile Portrait - Wider Content */
@media (max-width: 768px) and (orientation: portrait) {
    .about-page-section {
        padding: 120px 10px 60px !important;
    }
    
    .about-page-content {
        margin: 0 10px !important;
    }
    
    .about-page-header {
        padding: 25px 15px !important;
    }
    
    .about-page-body {
        padding: 25px 15px 40px !important;
    }
    
    .founder-info {
        padding: 20px !important;
    }
}

/* About Page - Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-page-section {
        padding: 130px 30px 70px;
    }
    
    .about-page-content {
        max-width: 850px;
    }
    
    .about-page-header {
        padding: 35px 40px;
    }
    
    .about-page-body {
        padding: 35px 40px 45px;
    }
}

/* Hero Section */
.hero {
    padding: 80px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #000000 url('background-texture.png') repeat;
    background-size: 400px 400px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    z-index: 2;
    width: 100%;
}

.hammer-image-container {
    display: none;
}

.hammer-image {
    max-width: 100%;
    height: auto;
}

.middleman-image-container {
    display: none;
}

.middleman-image {
    max-width: 100%;
    height: auto;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
    white-space: nowrap;
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(45deg, #2196F3, #1976D2, #42A5F5, #64B5F6);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.45rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 400;
    max-width: 600px;
}

/* Hero CTA Button */
.hero-cta {
    margin: 0;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    padding: 20px 45px;
    border-radius: 55px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 25px rgba(33, 150, 243, 0.4), 0 0 40px rgba(33, 150, 243, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 35px rgba(33, 150, 243, 0.5), 0 0 60px rgba(33, 150, 243, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.cta-button i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    color: #2196F3;
}

.cta-button:hover i {
    transform: translateX(3px);
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 45px;
}

.stat {
    text-align: center;
    background: rgba(30, 35, 45, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 25px;
    border-radius: 15px;
    border: 2px solid rgba(33, 150, 243, 0.5);
    flex: 1;
    max-width: 180px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: rgba(33, 150, 243, 0.7);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid #64B5F6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.stat-icon i {
    font-size: 2rem;
    color: #64B5F6;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-style: italic;
}

.stat-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-style: italic;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Concept Diagram */
.concept-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 350px;
    padding: 40px 20px;
}

/* Diagram Nodes */
.diagram-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.node-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(10px);
    border: 3px solid rgba(33, 150, 243, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.node-icon i {
    font-size: 3rem;
    color: #2196F3;
}

.node-label {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Vertical Flow Section */
.vertical-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.flow-arrow-vertical {
    display: flex;
    justify-content: center;
}

.flow-arrow-vertical i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.8; }
}

/* Middleman Crossed Section */
.middleman-crossed {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 25px;
    background: transparent;
    border-radius: 50px;
}

.small-node {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.cross-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: #2196F3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.crossed-out {
    position: relative;
    border: 3px solid rgba(255, 100, 100, 0.6);
    background: linear-gradient(135deg, rgba(255, 100, 100, 0.12), rgba(100, 100, 100, 0.08));
    backdrop-filter: blur(5px);
}

.crossed-out i {
    color: #ff6b6b;
    font-size: 2.2rem;
}

.cross-line {
    position: absolute;
    width: 140%;
    height: 5px;
    background: #ff0000;
    transform: rotate(-45deg);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    top: 50%;
    left: 50%;
    margin-left: -70%;
    margin-top: -2.5px;
}

.cross-line::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ff0000;
    transform: rotate(90deg);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    top: 0;
    left: 0;
}

.tradesman-node .node-icon {
    border-color: rgba(33, 150, 243, 0.7);
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.25), rgba(255, 255, 255, 0.1));
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.4);
}

.tradesman-node .node-icon i {
    color: #64B5F6;
    font-size: 3.2rem;
}

/* Platform Badge - Redesigned */
.platform-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    width: 100%;
}

.badge-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2196F3, transparent);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(33, 150, 243, 0.1);
    border: 2px solid rgba(33, 150, 243, 0.4);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
}

.badge-content i {
    font-size: 1.3rem;
    color: #2196F3;
}

.badge-content span {
    font-weight: 700;
    font-size: 0.85rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* Quote Section - Enhanced */
.quote-section {
    padding: 140px 0;
    background: #000000 url('background-texture.png') repeat;
    background-size: 400px 400px;
    position: relative;
    overflow: visible;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(33, 150, 243, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(33, 150, 243, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(33, 150, 243, 0.05) 0%, transparent 60%);
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.quote-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2196F3, transparent);
    opacity: 0.3;
}

.quote-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.quote-header h2 {
    font-size: 3rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 
        0 0 20px rgba(33, 150, 243, 0.25),
        0 4px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 4px;
    position: relative;
    font-family: 'Roboto Slab', serif;
    line-height: 1.2;
}

.quote-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2196F3, transparent);
    border-radius: 2px;
}

.quote-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.quote-widget {
    max-width: 950px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.98) 0%, 
            rgba(248, 252, 255, 0.96) 50%,
            rgba(245, 250, 255, 0.95) 100%);
    backdrop-filter: blur(30px);
    border-radius: 35px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 20px 50px rgba(33, 150, 243, 0.2),
        0 0 0 1px rgba(33, 150, 243, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    padding: 70px;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(33, 150, 243, 0.35);
    z-index: 1;
}

.quote-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, 
        #2196F3 0%, 
        #1976D2 20%,
        #42A5F5 40%, 
        #64B5F6 60%,
        #1976D2 80%,
        #2196F3 100%);
    background-size: 300% 100%;
    animation: shimmer 4s linear infinite;
    border-radius: 35px 35px 0 0;
}

.quote-widget::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(33, 150, 243, 0.03), transparent);
    pointer-events: none;
    border-radius: 0 0 35px 35px;
}

@keyframes shimmer {
    0% { background-position: 300% 0; }
    100% { background-position: -300% 0; }
}

/* Form Styles */
.quote-form {
    display: grid;
    gap: 30px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: auto;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.form-group label {
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto Slab', serif;
}

.form-group label i {
    color: #2196F3;
    font-size: 1.1rem;
}

.required-asterisk {
    color: #ff4444;
    margin-left: 4px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 18px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    font-family: 'Roboto Slab', serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #000000;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: #000000;
    opacity: 0.6;
}

.form-group input::-webkit-input-placeholder,
.form-group select::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
    color: #000000;
    opacity: 0.6;
}

.form-group input::-moz-placeholder,
.form-group select::-moz-placeholder,
.form-group textarea::-moz-placeholder {
    color: #000000;
    opacity: 0.6;
}

.form-group input:-ms-input-placeholder,
.form-group select:-ms-input-placeholder,
.form-group textarea:-ms-input-placeholder {
    color: #000000;
    opacity: 0.6;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #BBDEFB;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.15);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2196F3;
    background: #ffffff;
    box-shadow: 
        0 0 0 4px rgba(33, 150, 243, 0.15),
        0 4px 16px rgba(33, 150, 243, 0.2);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Modern Select Dropdown Styling */
.form-group select {
    cursor: pointer;
    font-weight: 500;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%232196F3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px;
    color: #1a1a2e;
    border: 2px solid #e1e5e9;
    padding: 18px 50px 18px 20px;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    appearance: none;
    font-family: 'Roboto Slab', serif;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select:hover {
    border-color: #2196F3;
    box-shadow: 0 4px 16px rgba(33, 150, 243, 0.2);
    background-color: #F5F9FF;
    transform: translateY(-1px);
}

.form-group select:focus {
    outline: none;
    border-color: #2196F3;
    background-color: #ffffff;
    box-shadow: 
        0 0 0 4px rgba(33, 150, 243, 0.15),
        0 6px 20px rgba(33, 150, 243, 0.25);
    transform: translateY(-2px);
}

.form-group select option {
    padding: 12px;
    background-color: #ffffff;
    color: #000000;
    font-weight: 500;
}

/* Contact Method Options */
.contact-method-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-items: stretch;
}

.contact-option {
    cursor: pointer;
    width: 100%;
    display: flex;
}

.contact-option input[type="radio"] {
    display: none;
}

.contact-option .option-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
    width: 100%;
    min-height: 110px;
    box-sizing: border-box;
    color: #000000;
}

.contact-option .option-label i {
    font-size: 1.5rem;
    color: #000000;
    transition: all 0.3s ease;
}

.contact-option:hover .option-label {
    border-color: #2196F3;
    background: #E3F2FD;
}

.contact-option:hover .option-label i {
    color: #2196F3;
}

.contact-option input[type="radio"]:checked + .option-label {
    border-color: #2196F3;
    background: rgba(33, 150, 243, 0.1);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
}

.contact-option input[type="radio"]:checked + .option-label i {
    color: #2196F3;
}

/* File Upload */
.file-upload-area {
    border: 3px solid #2196F3;
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #F5F9FF 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(33, 150, 243, 0.3);
}

.file-upload-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.file-upload-area:hover {
    border-color: #64B5F6;
    background: linear-gradient(135deg, #E3F2FD 0%, #F5F9FF 100%);
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(33, 150, 243, 0.5), 0 8px 24px rgba(33, 150, 243, 0.3);
}

.file-upload-area:hover::before {
    opacity: 1;
}

.file-upload-area i {
    font-size: 3rem;
    color: #2196F3;
    margin-bottom: 15px;
    display: block;
    transition: transform 0.3s ease;
}

.file-upload-area:hover i {
    transform: scale(1.1) rotate(5deg);
}

.file-upload-area p {
    color: #555;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.file-upload-area p span {
    color: #2196F3;
    font-weight: 700;
}

.image-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.image-preview img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #e1e5e9;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-preview img:hover {
    border-color: #2196F3;
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

.image-delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff4444;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    font-size: 14px;
    padding: 0;
    z-index: 100;
    opacity: 1;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.image-delete-btn i {
    pointer-events: none;
    user-select: none;
}

.image-delete-btn:hover {
    background: #cc0000;
    transform: scale(1.2) rotate(90deg);
    box-shadow: 0 4px 14px rgba(255, 68, 68, 0.6);
}

.image-delete-btn:active {
    background: #cc0000;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 14px rgba(255, 68, 68, 0.6);
}

/* Delete button - Mobile optimization */
@media (max-width: 768px) {
    .image-delete-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
        top: 8px;
        right: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 50%, #42A5F5 100%);
    color: #1a1a2e;
    border: none;
    padding: 24px 60px;
    border-radius: 60px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 40px auto 0 auto;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(33, 150, 243, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    width: fit-content;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(33, 150, 243, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 50%, #64B5F6 100%);
}

.submit-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.submit-btn i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #000000 url('background-texture.png') repeat;
    background-size: 400px 400px;
    color: white;
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 80px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.desktop-title {
    display: inline;
}

.mobile-title {
    display: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.feature-icon {
    width: 90px;
    height: 90px;
    background: rgba(33, 150, 243, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid rgba(33, 150, 243, 0.3);
}

.feature-icon i {
    font-size: 2.2rem;
    color: #2196F3;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.7;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Schedule Section */
.schedule-section {
    padding: 120px 0 80px;
    background: #000000 url('background-texture.png') repeat;
    background-size: 400px 400px;
}

.schedule-header {
    text-align: center;
    margin-bottom: 60px;
}

.schedule-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Roboto Slab', serif;
    letter-spacing: 1px;
}

.schedule-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    font-family: 'Roboto Slab', serif;
    line-height: 1.6;
}

.schedule-widget {
    max-width: 1000px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.schedule-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.info-card {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(33, 150, 243, 0.08) 100%);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(33, 150, 243, 0.3);
    box-shadow: 0 8px 32px rgba(33, 150, 243, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(33, 150, 243, 0.3);
    border-color: rgba(33, 150, 243, 0.5);
}

.info-card i {
    font-size: 2.2rem;
    color: #2196F3;
    margin-bottom: 20px;
    display: block;
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Roboto Slab', serif;
    letter-spacing: 0.5px;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 25px;
    font-size: 1.1rem;
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
}

.info-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2196F3;
    font-weight: bold;
    font-size: 1.2rem;
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    line-height: 1.6;
}

.schedule-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #2196F3;
}

/* Contact Info */
.contact-info {
    padding: 80px 0;
    background: #000000 url('background-texture.png') repeat;
    background-size: 400px 400px;
}

.contact-info h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 60px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-sizing: border-box;
}

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

.contact-card i {
    font-size: 2.2rem;
    color: #2196F3;
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 1.1rem;
    white-space: nowrap;
    max-width: 100%;
    text-align: center !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
    padding: 0;
}

.contact-card p a,
.contact-card a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    font-weight: 500;
    border-bottom: none !important;
    text-align: center !important;
    display: inline !important;
}

.contact-card p a:hover,
.contact-card a:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Contact Card - Portrait Screens - Smaller Text */
@media (orientation: portrait) {
    .contact-card p {
        font-size: clamp(0.75rem, 2.5vw, 0.95rem) !important;
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .contact-card {
        padding: clamp(20px, 4vw, 40px);
        text-align: center !important;
    }
    
    .contact-card p a,
    .contact-card a {
        text-align: center !important;
        display: inline !important;
    }
}

/* SkillBlu Page Styles */
.skillblu-hero {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.skillblu-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(127, 255, 0, 0.1));
    border: 2px solid rgba(33, 150, 243, 0.5);
    border-radius: 50px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.launch-badge i {
    color: #2196F3;
    font-size: 1.2rem;
}

.launch-badge span {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Roboto Slab', serif;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(33, 150, 243, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(33, 150, 243, 0.5);
    }
}

.skillblu-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'Roboto Slab', serif;
    letter-spacing: 1px;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.launch-date {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 40px;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.launch-date i {
    color: #2196F3;
    font-size: 1.5rem;
}

.launch-date span {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Roboto Slab', serif;
}

.skillblu-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
}

.skillblu-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.feature-item {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.9));
    border: 2px solid rgba(33, 150, 243, 0.25);
    border-radius: 20px;
    padding: 45px 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2196F3, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: rgba(33, 150, 243, 0.5);
    box-shadow: 0 20px 50px rgba(33, 150, 243, 0.15), 
                0 0 30px rgba(33, 150, 243, 0.1);
    background: linear-gradient(135deg, rgba(26, 26, 46, 1), rgba(22, 33, 62, 0.95));
}

.feature-item i {
    font-size: 2.8rem;
    color: #2196F3;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(33, 150, 243, 0.2);
    transition: all 0.4s ease;
    margin: 0 auto;
}

.feature-item:hover i {
    background: rgba(33, 150, 243, 0.15);
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 0 25px rgba(33, 150, 243, 0.3);
}

.feature-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    letter-spacing: 0.3px;
    font-family: 'Roboto Slab', serif;
}

.feature-item p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
}

.skillblu-vision {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.6), rgba(26, 26, 46, 0.8));
    border: 2px solid rgba(33, 150, 243, 0.3);
    border-radius: 30px;
    padding: 60px 50px;
    margin-bottom: 60px;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.skillblu-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #2196F3, #64B5F6, #2196F3, transparent);
}

.skillblu-vision::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.05), transparent);
    animation: shine 8s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.skillblu-vision h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 35px;
    text-align: center;
    background: linear-gradient(135deg, #2196F3, #64B5F6, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    font-family: 'Roboto Slab', serif;
}

.skillblu-vision p {
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    text-align: center;
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
}

.skillblu-vision p:last-child {
    margin-bottom: 0;
}

.skillblu-cta {
    text-align: center;
}

.skillblu-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #2196F3, #64B5F6);
    color: #000000;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
    font-family: 'Roboto Slab', serif;
}

.skillblu-cta .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.5);
}

.cta-note {
    margin-top: 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
}

/* Responsive Styles for SkillBlu */
@media (max-width: 768px) {
    .skillblu-hero {
        padding: 100px 20px 60px;
    }
    
    .skillblu-title {
        font-size: 2.8rem;
        font-family: 'Roboto Slab', serif;
        font-weight: 800;
        letter-spacing: 1px;
        margin-bottom: 25px;
        line-height: 1.2;
    }
    
    .launch-badge {
        padding: 10px 25px;
        margin-bottom: 25px;
    }
    
    .launch-badge span {
        font-family: 'Roboto Slab', serif;
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    
    .launch-date {
        padding: 15px 25px;
        gap: 12px;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(33, 150, 243, 0.08) 100%);
        border: 2px solid rgba(33, 150, 243, 0.4);
        box-shadow: 0 4px 16px rgba(33, 150, 243, 0.2);
    }
    
    .launch-date span {
        font-size: 1.1rem;
        font-family: 'Roboto Slab', serif;
        font-weight: 600;
        white-space: nowrap;
    }
    
    .launch-date i {
        font-size: 1.3rem;
        color: #42A5F5;
    }

    .skillblu-description {
        font-size: 1.1rem;
        font-family: 'Roboto Slab', serif;
        font-weight: 400;
        line-height: 1.7;
        margin-bottom: 40px;
        padding: 0 10px;
        color: rgba(255, 255, 255, 0.95);
    }

    .skillblu-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .feature-item {
        padding: 30px 25px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(33, 150, 243, 0.08) 100%);
        border: 2px solid rgba(33, 150, 243, 0.35);
        box-shadow: 0 6px 24px rgba(33, 150, 243, 0.2);
        transition: all 0.3s ease;
    }
    
    .feature-item:active {
        transform: scale(0.98);
    }

    .feature-item i {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
        color: #42A5F5;
    }

    .feature-item h3 {
        font-size: 1.4rem;
        font-family: 'Roboto Slab', serif;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
        color: #ffffff;
    }

    .feature-item p {
        font-size: 1.05rem;
        font-family: 'Roboto Slab', serif;
        font-weight: 400;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.95);
    }

    .skillblu-vision {
        padding: 35px 25px;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(33, 150, 243, 0.2) 0%, rgba(33, 150, 243, 0.1) 100%);
        border: 2px solid rgba(33, 150, 243, 0.4);
        box-shadow: 0 8px 32px rgba(33, 150, 243, 0.25);
        margin-bottom: 40px;
    }

    .skillblu-vision h2 {
        font-size: 2.2rem;
        font-family: 'Roboto Slab', serif;
        font-weight: 800;
        letter-spacing: 1px;
        margin-bottom: 25px;
        line-height: 1.2;
    }

    .skillblu-vision p {
        font-size: 1.1rem;
        font-family: 'Roboto Slab', serif;
        font-weight: 400;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 20px;
    }

    .skillblu-cta .cta-button {
        padding: 18px 40px;
        font-size: 1.1rem;
        font-family: 'Roboto Slab', serif;
        font-weight: 700;
        box-shadow: 0 8px 24px rgba(33, 150, 243, 0.4);
    }
    
    .cta-note {
        font-size: 1rem;
        font-family: 'Roboto Slab', serif;
        color: rgba(255, 255, 255, 0.85);
    }
}

/* Footer */
.footer {
    background: #000000 url('background-texture.png') repeat;
    background-size: 400px 400px;
    color: white;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #2196F3;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    position: relative;
    top: 4px;
    left: -5px;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.footer p {
    opacity: 0.7;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* About Page Styles */
.about-section {
    padding: 120px 0 80px;
    background: #000000;
    color: white;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-header h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-intro {
    max-width: 800px;
    margin: 0 auto;
}

.founder-info {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-image {
    width: 120px;
    height: 120px;
    background: rgba(33, 150, 243, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #2196F3;
    flex-shrink: 0;
}

.founder-image i {
    font-size: 3rem;
    color: #2196F3;
}

.founder-details h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.founder-title {
    font-size: 1.3rem;
    color: #2196F3;
    font-weight: 600;
    margin-bottom: 5px;
}

.founder-education {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-story {
    margin-bottom: 80px;
}

.about-story p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 300;
}

.mission-section {
    margin-bottom: 80px;
}

.mission-section h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.mission-card i {
    font-size: 3rem;
    color: #2196F3;
    margin-bottom: 20px;
    display: block;
}

.mission-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
}

.vision-section {
    margin-bottom: 80px;
}

.vision-section h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.vision-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 300;
}

.vision-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.vision-list li {
    padding: 15px 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 30px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.vision-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2196F3;
    font-weight: bold;
    font-size: 1.3rem;
}

.future-section {
    margin-bottom: 60px;
}

.future-section h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.future-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 300;
}

.skillblu-features {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.feature-item i {
    font-size: 2rem;
    color: #2196F3;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
}

.future-conclusion {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2196F3;
    font-weight: 600;
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

/* Specific media query for 744x1133 dimension - Portrait Layout */
@media (min-width: 720px) and (max-width: 760px) and (min-height: 1100px) and (max-height: 1150px) {
    .hero-container {
        padding-top: 220px;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100vh;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 30px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hammer-image-container {
        position: absolute;
        top: 90px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hammer-image {
        width: 135px;
        height: auto;
        mix-blend-mode: screen;
    }
    
    .hero-title {
        font-size: 7.5rem;
        margin: 0 0 30px 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    
    .hero-title .gradient-text {
        display: block;
        white-space: nowrap;
    }
    
    .hero-subtitle {
        font-size: 3.2rem;
        margin: 0 0 70px 0;
        text-align: center;
    }
    
    .hero-cta {
        margin: 0 0 85px 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-cta .cta-button {
        padding: 30px 70px;
        font-size: 1.85rem;
    }
    
    .hero-stats {
        display: flex;
        flex-direction: row;
        gap: 70px;
        margin: 0 0 95px 0;
        width: 100%;
        justify-content: center;
        transform: scale(1);
    }
    
    .stat {
        flex: 0 0 270px;
        width: 270px;
        min-width: 0;
        max-width: 270px;
        padding: 36px;
        min-height: auto;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 2px solid rgba(33, 150, 243, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .stat-icon {
        font-size: 3.2rem;
        margin-bottom: 16px;
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: 3.2rem;
        margin: 16px 0;
    }
    
    .stat-label {
        font-size: 1.25rem;
        margin-top: 12px;
        line-height: 1.1;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        font-size: 1.2rem;
        margin-top: 7px;
        line-height: 1.1;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .middleman-image-container {
        position: relative !important;
        bottom: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-top: -120px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .middleman-image {
        width: 450px;
        height: auto;
    }
    
    .hero-visual {
        display: none;
    }
    
    .nav-container {
        padding-left: 5px;
    }
    
    .nav-logo .logo-text-top {
        font-size: 1.35rem;
    }
    
    .nav-logo .logo-text-bottom {
        font-size: 0.68rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 18px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .schedule-widget {
        max-width: 700px;
    }
    
    .schedule-info {
        grid-template-columns: 1fr;
    }
    
    .schedule-form {
        padding: 30px 35px;
    }
}

/* Specific media query for 1133x744 dimension - Landscape Layout */
@media (min-width: 1100px) and (max-width: 1150px) and (min-height: 720px) and (max-height: 760px) {
    .hero-container {
        padding-top: 160px;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100vh;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 30px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        text-transform: uppercase;
        font-size: clamp(3.2rem, 5vw, 4rem);
        margin: 0 0 clamp(15px, 2vh, 20px) 0;
        text-align: center;
        white-space: nowrap;
    }
    
    .hero-title .gradient-text {
        display: inline;
        white-space: nowrap;
    }
    
    .hero-subtitle {
        font-size: clamp(1.4rem, 2.2vw, 1.8rem);
        margin: 0 0 clamp(25px, 3vh, 30px) 0;
        text-align: center;
    }
    
    .hammer-image-container {
        position: absolute;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hammer-image {
        width: clamp(100px, 10vw, 115px);
        height: auto;
        mix-blend-mode: screen;
    }
    
    .hero-cta {
        margin: 0 0 clamp(30px, 4vh, 40px) 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-cta .cta-button {
        padding: clamp(14px, 1.8vw, 16px) clamp(30px, 3.5vw, 35px);
        font-size: clamp(1rem, 1.2vw, 1.1rem);
    }
    
    .hero-stats {
        display: flex;
        flex-direction: row;
        gap: clamp(30px, 4vw, 40px);
        margin: 0 0 clamp(35px, 4vh, 45px) 0;
        width: 100%;
        justify-content: center;
        transform: scale(1);
    }
    
    .stat {
        flex: 0 0 clamp(150px, 16vw, 185px);
        width: clamp(150px, 16vw, 185px);
        min-width: 0;
        max-width: clamp(150px, 16vw, 185px);
        padding: clamp(18px, 2.5vw, 22px);
        min-height: auto;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 2px solid rgba(33, 150, 243, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .stat-icon {
        font-size: clamp(1.6rem, 2.5vw, 1.9rem);
        margin-bottom: 8px;
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: clamp(1.6rem, 2.2vw, 1.9rem);
        margin: 8px 0;
    }
    
    .stat-label {
        font-size: clamp(0.7rem, 1.1vw, 0.82rem);
        margin-top: 5px;
        line-height: 1;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        font-size: clamp(0.65rem, 1vw, 0.78rem);
        margin-top: 3px;
        line-height: 1;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .middleman-image-container {
        position: relative !important;
        bottom: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-top: -100px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .middleman-image {
        width: clamp(240px, 28vw, 280px);
        height: auto;
    }
    
    .hero-visual {
        display: none;
    }
    
    .nav-container {
        padding-left: 5px;
    }
    
    .nav-logo .logo-text-top {
        font-size: 1.4rem;
    }
    
    .nav-logo .logo-text-bottom {
        font-size: 0.7rem;
    }
    
    .schedule-header {
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .schedule-header h1 {
        font-size: 2.2rem;
    }
    
    .schedule-header p {
        font-size: 1rem;
    }
    
    .schedule-widget {
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .schedule-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .schedule-form {
        padding: 30px 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
}

/* Specific media query for 1180x820 dimension - Landscape Layout */
@media (min-width: 1150px) and (max-width: 1200px) and (min-height: 800px) and (max-height: 840px) {
    .hero-container {
        padding-top: 170px;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100vh;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 30px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        text-transform: uppercase;
        font-size: clamp(3.5rem, 5.5vw, 4.5rem);
        margin: 0 0 clamp(16px, 2.2vh, 22px) 0;
        text-align: center;
        white-space: nowrap;
    }
    
    .hero-title .gradient-text {
        display: inline;
        white-space: nowrap;
    }
    
    .hero-subtitle {
        font-size: clamp(1.5rem, 2.3vw, 2rem);
        margin: 0 0 clamp(28px, 3.5vh, 35px) 0;
        text-align: center;
    }
    
    .hammer-image-container {
        position: absolute;
        top: 85px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hammer-image {
        width: clamp(105px, 11vw, 125px);
        height: auto;
        mix-blend-mode: screen;
    }
    
    .hero-cta {
        margin: 0 0 clamp(33px, 4.5vh, 45px) 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-cta .cta-button {
        padding: clamp(15px, 2vw, 17px) clamp(32px, 3.8vw, 38px);
        font-size: clamp(1rem, 1.25vw, 1.15rem);
    }
    
    .hero-stats {
        display: flex;
        flex-direction: row;
        gap: clamp(33px, 4.2vw, 45px);
        margin: 0 0 clamp(38px, 4.8vh, 50px) 0;
        width: 100%;
        justify-content: center;
        transform: scale(1);
    }
    
    .stat {
        flex: 0 0 clamp(155px, 17vw, 195px);
        width: clamp(155px, 17vw, 195px);
        min-width: 0;
        max-width: clamp(155px, 17vw, 195px);
        padding: clamp(18px, 2.6vw, 24px);
        min-height: auto;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 2px solid rgba(33, 150, 243, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .stat-icon {
        font-size: clamp(1.65rem, 2.6vw, 2rem);
        margin-bottom: 8px;
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: clamp(1.65rem, 2.3vw, 2rem);
        margin: 8px 0;
    }
    
    .stat-label {
        font-size: clamp(0.72rem, 1.15vw, 0.85rem);
        margin-top: 5px;
        line-height: 1;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        font-size: clamp(0.68rem, 1.05vw, 0.8rem);
        margin-top: 3px;
        line-height: 1;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .middleman-image-container {
        position: relative !important;
        bottom: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-top: -105px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .middleman-image {
        width: clamp(250px, 30vw, 290px);
        height: auto;
    }
    
    .hero-visual {
        display: none;
    }
    
    .nav-container {
        padding-left: 5px;
    }
    
    .nav-logo .logo-text-top {
        font-size: 1.4rem;
    }
    
    .nav-logo .logo-text-bottom {
        font-size: 0.7rem;
    }
    
    .schedule-header {
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
    }
    
    .schedule-header h1 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .schedule-header p {
        font-size: 1rem;
        margin-top: 0;
    }
    
    .schedule-widget {
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .schedule-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .schedule-form {
        padding: 30px 40px;
    }
    
    .submit-btn {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Specific media query for 1366x1024 dimension */
@media (min-width: 1350px) and (max-width: 1380px) and (min-height: 1000px) and (max-height: 1050px) {
    .hero-container {
        padding-top: 60px;
        margin-top: -40px;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 800px;
    }
    
    .hero-title {
        text-transform: uppercase;
        font-size: 4.5rem;
        font-weight: 500;
        margin-top: 330px;
        margin-bottom: 0px;
        margin-left: -80px;
    }
    
    .hero-subtitle {
        margin-left: 100px;
        font-size: 1.9rem;
        font-weight: 400;
        margin-bottom: 12px;
    }
    
    .nav-links a {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        margin-top: 36px;
        margin-bottom: 130px;
        justify-content: center;
    }
    
    .hero-cta .cta-button {
        padding: 17px 36px;
        font-size: 1.1rem;
    }
    
    .hero-stats {
        transform: scale(0.9);
        margin-top: -30px;
        margin-left: 0;
        justify-content: center;
        gap: 55px;
        margin-bottom: 120px;
    }
    
    .stat {
        min-height: 100px;
        padding: 15px 15px;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .stat-label {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-icon {
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .nav-container {
        padding-left: 5px;
    }
    
    .nav-logo .logo-text-top {
        font-size: 1.4rem;
    }
    
    .nav-logo .logo-text-bottom {
        font-size: 0.7rem;
    }
    
    .hammer-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 185px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    
    .hammer-image {
        width: 140px;
        height: auto;
        mix-blend-mode: screen;
    }
    
    .middleman-image {
        width: 270px;
    }
    
    .schedule-header {
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .schedule-header h1 {
        font-size: 2.6rem;
    }
    
    .schedule-header p {
        font-size: 1.2rem;
    }
    
    .schedule-widget {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .schedule-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .schedule-form {
        padding: 40px 50px;
    }
    
    .submit-btn {
        margin-left: auto;
        margin-right: auto;
        padding: 18px 38px;
        font-size: 1.1rem;
    }
}

/* Override for all non-mobile middleman-image-container positioning */
@media (min-width: 769px) {
    .middleman-image-container {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
}

/* All Tablet Screens - Portrait (iPad, Android tablets) */
@media (min-width: 769px) and (max-width: 1279px) and (orientation: portrait) {
    .hero-container {
        padding-top: clamp(160px, 18vh, 200px);
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100vh;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 30px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hammer-image-container {
        position: absolute;
        top: clamp(75px, 9vh, 95px);
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hammer-image {
        width: clamp(100px, 10vw, 130px);
        height: auto;
        mix-blend-mode: screen;
    }
    
    .hero-title {
        font-size: clamp(3.2rem, 5vw, 5rem);
        margin: 0 0 clamp(15px, 2vh, 25px) 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(8px, 1.2vh, 12px);
    }
    
    .hero-title .gradient-text {
        display: block;
        white-space: nowrap;
    }
    
    .hero-subtitle {
        font-size: clamp(1.5rem, 2.2vw, 2.2rem);
        margin: 0 0 clamp(35px, 4.5vh, 50px) 0;
        text-align: center;
    }
    
    .hero-cta {
        margin: 0 0 clamp(45px, 5.5vh, 65px) 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-cta .cta-button {
        padding: clamp(16px, 2.2vw, 22px) clamp(38px, 4.5vw, 50px);
        font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    }
    
    .hero-stats {
        display: flex;
        flex-direction: row;
        gap: clamp(35px, 4.5vw, 55px);
        margin: 0 0 clamp(50px, 6vh, 70px) 0;
        width: 100%;
        justify-content: center;
        transform: scale(1);
    }
    
    .stat {
        flex: 0 0 clamp(170px, 19vw, 220px);
        width: clamp(170px, 19vw, 220px);
        min-width: 0;
        max-width: clamp(170px, 19vw, 220px);
        padding: clamp(20px, 2.8vw, 30px);
        min-height: auto;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 2px solid rgba(33, 150, 243, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .stat-icon {
        font-size: clamp(1.8rem, 2.8vw, 2.3rem);
        margin-bottom: 10px;
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: clamp(1.8rem, 2.5vw, 2.3rem);
        margin: 10px 0;
    }
    
    .stat-label {
        font-size: clamp(0.75rem, 1.2vw, 0.95rem);
        margin-top: 6px;
        line-height: 1.1;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        font-size: clamp(0.7rem, 1.1vw, 0.9rem);
        margin-top: 4px;
        line-height: 1.1;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .middleman-image-container {
        position: relative !important;
        bottom: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-top: clamp(-90px, -10vh, -70px);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .middleman-image {
        width: clamp(260px, 32vw, 330px);
        height: auto;
    }
    
    .hero-visual {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    /* Forms - Portrait Tablet */
    .quote-widget {
        max-width: 90%;
        margin: 0 auto;
        padding: 50px 40px;
    }
    
    .quote-section {
        padding: 100px 30px;
    }
    
    .schedule-widget {
        max-width: 850px;
        margin: 0 auto;
    }
    
    .schedule-form {
        padding: 35px 40px;
    }
    
    .schedule-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* All Tablet Screens - Landscape (iPad, Android tablets) */
@media (min-width: 769px) and (max-width: 1279px) and (orientation: landscape) {
    .hero-container {
        padding-top: 160px;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100vh;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 30px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hammer-image-container {
        position: absolute;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hammer-image {
        width: clamp(100px, 10vw, 120px);
        height: auto;
        mix-blend-mode: screen;
    }
    
    .hero-title {
        font-size: clamp(3.2rem, 5vw, 4.5rem);
        margin: 0 0 clamp(15px, 2vh, 20px) 0;
        text-align: center;
        white-space: nowrap;
    }
    
    .hero-title .gradient-text {
        display: inline;
        white-space: nowrap;
    }
    
    .hero-subtitle {
        font-size: clamp(1.4rem, 2.2vw, 2rem);
        margin: 0 0 clamp(25px, 3vh, 35px) 0;
        text-align: center;
    }
    
    .hero-cta {
        margin: 0 0 clamp(30px, 4vh, 45px) 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-cta .cta-button {
        padding: clamp(14px, 1.8vw, 17px) clamp(30px, 3.5vw, 38px);
        font-size: clamp(1rem, 1.2vw, 1.15rem);
    }
    
    .hero-stats {
        display: flex;
        flex-direction: row;
        gap: clamp(30px, 4vw, 45px);
        margin: 0 0 clamp(35px, 4vh, 50px) 0;
        width: 100%;
        justify-content: center;
        transform: scale(1);
    }
    
    .stat {
        flex: 0 0 clamp(160px, 18vw, 200px);
        width: clamp(160px, 18vw, 200px);
        min-width: 0;
        max-width: clamp(160px, 18vw, 200px);
        padding: clamp(18px, 2.5vw, 25px);
        min-height: auto;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 2px solid rgba(33, 150, 243, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .stat-icon {
        font-size: clamp(1.6rem, 2.5vw, 2rem);
        margin-bottom: 8px;
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: clamp(1.6rem, 2.2vw, 2rem);
        margin: 8px 0;
    }
    
    .stat-label {
        font-size: clamp(0.7rem, 1.1vw, 0.85rem);
        margin-top: 5px;
        line-height: 1;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        font-size: clamp(0.65rem, 1vw, 0.8rem);
        margin-top: 3px;
        line-height: 1;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .middleman-image-container {
        position: relative !important;
        bottom: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-top: -110px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .middleman-image {
        width: clamp(240px, 30vw, 300px);
        height: auto;
    }
    
    .hero-visual {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    /* Forms - Landscape Tablet */
    .quote-widget {
        max-width: 90%;
        margin: 0 auto;
        padding: 55px 50px;
    }
    
    .quote-section {
        padding: 110px 40px;
    }
    
    .schedule-widget {
        max-width: 950px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .schedule-form {
        padding: 40px 45px;
    }
    
    .schedule-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }
}

/* All Laptop/Desktop Screens - LANDSCAPE ONLY */
@media (min-width: 1280px) and (max-width: 2880px) and (min-height: 700px) and (max-height: 1800px) and (orientation: landscape) {
    .hero-container {
        padding-top: 180px;
        margin-top: 0;
        grid-template-columns: 1fr;
        justify-items: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100vh;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        text-transform: uppercase;
        font-size: clamp(4.5rem, 6.5vw, 7.5rem);
        font-weight: 500;
        margin: 0 0 clamp(18px, 2.2vh, 25px) 0;
        text-align: center;
        white-space: nowrap;
    }
    
    .hero-title .gradient-text {
        display: inline;
        white-space: nowrap;
    }
    
    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
        font-size: clamp(2rem, 2.8vw, 3rem);
        font-weight: 400;
        margin: 0 0 clamp(38px, 4.5vh, 50px) 0;
        text-align: center;
        white-space: nowrap;
    }
    
    .hammer-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 85px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    
    .hammer-image {
        width: clamp(130px, 12vw, 160px);
        mix-blend-mode: screen;
    }
    
    .nav-links a {
        font-size: 1.08rem;
    }
    
    .nav-links {
        margin-right: 50px;
    }
    
    .nav-container {
        padding: 40px 0;
        min-height: 100px;
    }
    
    .hero-cta {
        margin: 0 0 clamp(45px, 5.5vh, 60px) 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-cta .cta-button {
        padding: clamp(18px, 2vw, 24px) clamp(42px, 4.5vw, 56px);
        font-size: clamp(1.2rem, 1.4vw, 1.5rem);
    }
    
    .hero-stats {
        transform: scale(1);
        margin: 0 0 clamp(50px, 6vh, 70px) 0;
        display: flex;
        justify-content: center;
        gap: clamp(40px, 4.5vw, 60px);
        width: 100%;
    }
    
    .stat {
        flex: 0 0 auto;
        width: clamp(180px, 16vw, 220px);
        min-height: 150px;
        padding: 28px 25px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 2px solid rgba(33, 150, 243, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .stat-label {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-icon {
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .nav-logo .logo-text-top {
        font-size: 1.45rem;
    }
    
    .nav-logo .logo-text-bottom {
        font-size: 0.72rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
    }
    
    .feature-card {
        padding: 28px 18px;
    }
    
    .feature-card h3 {
        font-size: 1.15rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .middleman-image {
        width: clamp(300px, 25vw, 360px);
    }
    
    .middleman-image-container {
        position: relative !important;
        bottom: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-top: -120px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .schedule-widget {
        max-width: 1050px;
        display: flex;
        flex-direction: column;
        gap: 35px;
    }
    
    .schedule-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }
    
    .schedule-form {
        padding: 35px 45px;
    }
    
    .schedule-header {
        margin-left: auto;
        margin-right: auto;
    }
    
    .submit-btn {
        margin-left: auto;
        margin-right: auto;
        padding: 17px 36px;
        font-size: 1.08rem;
    }
    
    /* Forms - Laptop/Desktop */
    .quote-widget {
        max-width: 1050px;
        margin: 0 auto;
        padding: 60px 55px;
    }
    
    .quote-section {
        padding: 130px 50px;
    }
}

/* All Laptop/Desktop Screens - PORTRAIT */
@media (min-width: 1280px) and (max-width: 2880px) and (min-height: 1400px) and (orientation: portrait) {
    .hero-container {
        padding-top: clamp(200px, 20vh, 280px);
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100vh;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 50px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hammer-image-container {
        position: absolute;
        top: clamp(100px, 10vh, 140px);
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hammer-image {
        width: clamp(140px, 12vw, 180px);
        height: auto;
        mix-blend-mode: screen;
    }
    
    .hero-title {
        font-size: clamp(5.5rem, 7vw, 7.5rem);
        margin: 0 0 clamp(28px, 3vh, 40px) 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 1.5vh, 18px);
    }
    
    .hero-title .gradient-text {
        display: block;
        white-space: nowrap;
    }
    
    .hero-subtitle {
        font-size: clamp(2.2rem, 2.8vw, 3rem);
        margin: 0 0 clamp(55px, 6vh, 75px) 0;
        text-align: center;
    }
    
    .hero-cta {
        margin: 0 0 clamp(70px, 7vh, 90px) 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-cta .cta-button {
        padding: clamp(22px, 2.5vw, 28px) clamp(55px, 5.5vw, 70px);
        font-size: clamp(1.3rem, 1.6vw, 1.6rem);
    }
    
    .hero-stats {
        display: flex;
        flex-direction: row;
        gap: clamp(55px, 5.5vw, 75px);
        margin: 0 0 clamp(80px, 8vh, 100px) 0;
        width: 100%;
        justify-content: center;
        transform: scale(1);
    }
    
    .stat {
        flex: 0 0 clamp(220px, 20vw, 280px);
        width: clamp(220px, 20vw, 280px);
        min-width: 0;
        max-width: clamp(220px, 20vw, 280px);
        padding: clamp(30px, 3.2vw, 40px);
        min-height: auto;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 2px solid rgba(33, 150, 243, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .stat-icon {
        font-size: clamp(2.4rem, 3vw, 3rem);
        margin-bottom: 14px;
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: clamp(2.4rem, 2.8vw, 3rem);
        margin: 14px 0;
    }
    
    .stat-label {
        font-size: clamp(0.95rem, 1.3vw, 1.15rem);
        margin-top: 8px;
        line-height: 1.1;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        font-size: clamp(0.9rem, 1.2vw, 1.1rem);
        margin-top: 6px;
        line-height: 1.1;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .middleman-image-container {
        position: relative !important;
        bottom: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-top: clamp(-120px, -12vh, -100px);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .middleman-image {
        width: clamp(350px, 35vw, 450px);
        height: auto;
    }
    
    .hero-visual {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    /* Forms - Portrait Large Laptop/Desktop */
    .quote-widget {
        max-width: 90%;
        margin: 0 auto;
        padding: 60px 50px;
    }
    
    .quote-section {
        padding: 120px 40px;
    }
    
    .schedule-widget {
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .schedule-form {
        padding: 45px 50px;
    }
    
    .schedule-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* OVERRIDE: Very Large Screens (2560x1664 and similar) - Move elements down */
@media (min-width: 2400px) and (min-height: 1500px) {
    .hero-container {
        padding-top: 280px !important;
    }
    
    .hero-title {
        margin-top: 80px !important;
    }
    
    .hero-subtitle {
        margin-top: 20px !important;
    }
    
    .hero-cta {
        margin-top: 20px !important;
    }
    
    .hero-stats {
        margin-top: 20px !important;
    }
    
    .middleman-image-container {
        margin-top: -80px !important;
    }
}

/* OVERRIDE: Specific media query for 1366x1024 dimension - Smaller elements */
@media (min-width: 1350px) and (max-width: 1380px) and (min-height: 1000px) and (max-height: 1050px) {
    .hero-title {
        font-size: 4.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.9rem !important;
    }
    
    .hero-cta .cta-button {
        padding: 17px 36px !important;
        font-size: 1.1rem !important;
    }
    
    .hero-stats {
        transform: scale(0.7) !important;
    }
    
    .stat-number {
        font-size: 1.6rem !important;
    }
    
    .hammer-image {
        width: 140px !important;
    }
    
    .middleman-image {
        width: 270px !important;
    }
}

/* iPad (10.2", 9.7") - Portrait 768 x 1024 */
@media (min-width: 760px) and (max-width: 780px) and (min-height: 1010px) and (max-height: 1040px) {
    .hero-container {
        padding-top: 60px;
        margin-top: -40px;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        text-transform: uppercase;
        font-size: 4rem;
        font-weight: 500;
        margin-top: 200px;
        margin-bottom: 0px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.8rem;
        font-weight: 400;
        margin-bottom: 12px;
        margin-top: 15px;
        text-align: center;
    }
    
    .hammer-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 90px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    
    .hammer-image {
        width: 110px;
        mix-blend-mode: screen;
    }
    
    .nav-links a {
        font-size: 1rem;
    }
    
    .hero-cta {
        margin-top: 35px;
        margin-bottom: 90px;
        justify-content: center;
    }
    
    .hero-cta .cta-button {
        padding: 15px 32px;
        font-size: 1.05rem;
    }
    
    .hero-stats {
        transform: scale(0.85);
        margin-top: -60px;
        margin-left: 0;
        justify-content: center;
        gap: 45px;
        margin-bottom: 90px;
    }
    
    .stat {
        min-height: 100px;
        padding: 15px 15px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 2px solid rgba(33, 150, 243, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .stat-label {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-icon {
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: 1.9rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .nav-container {
        padding-left: 5px;
    }
    
    .nav-logo .logo-text-top {
        font-size: 1.3rem;
    }
    
    .nav-logo .logo-text-bottom {
        font-size: 0.65rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .middleman-image {
        width: 260px;
    }
    
    .middleman-image-container {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .schedule-widget {
        max-width: 700px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .schedule-info {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .schedule-form {
        padding: 30px 35px;
    }
    
    .schedule-header {
        margin-left: auto;
        margin-right: auto;
    }
    
    .submit-btn {
        margin-left: auto;
        margin-right: auto;
        padding: 15px 32px;
        font-size: 1.05rem;
    }
}

/* iPad (10.2", 9.7") - Landscape 1024 x 768 */
@media (min-width: 1010px) and (max-width: 1040px) and (min-height: 760px) and (max-height: 780px) {
    .hero-container {
        padding-top: 60px;
        margin-top: -40px;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        text-transform: uppercase;
        font-size: 4.2rem;
        font-weight: 500;
        margin-top: 180px;
        margin-bottom: 0px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.9rem;
        font-weight: 400;
        margin-bottom: 12px;
        margin-top: 15px;
        text-align: center;
    }
    
    .hammer-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 85px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    
    .hammer-image {
        width: 115px;
        mix-blend-mode: screen;
    }
    
    .nav-links a {
        font-size: 1.02rem;
    }
    
    .hero-cta {
        margin-top: 35px;
        margin-bottom: 80px;
        justify-content: center;
    }
    
    .hero-cta .cta-button {
        padding: 15px 32px;
        font-size: 1.08rem;
    }
    
    .hero-stats {
        transform: scale(0.82);
        margin-top: -50px;
        margin-left: 0;
        justify-content: center;
        gap: 48px;
        margin-bottom: 80px;
    }
    
    .stat {
        min-height: 100px;
        padding: 15px 15px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 2px solid rgba(33, 150, 243, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .stat-label {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-icon {
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: 1.95rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .nav-container {
        padding-left: 5px;
    }
    
    .nav-logo .logo-text-top {
        font-size: 1.35rem;
    }
    
    .nav-logo .logo-text-bottom {
        font-size: 0.68rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
    
    .feature-card {
        padding: 22px 15px;
    }
    
    .feature-card h3 {
        font-size: 1.05rem;
    }
    
    .feature-card p {
        font-size: 0.88rem;
    }
    
    .middleman-image {
        width: 270px;
    }
    
    .middleman-image-container {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .schedule-widget {
        max-width: 900px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .schedule-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .schedule-form {
        padding: 30px 40px;
    }
    
    .schedule-header {
        margin-left: auto;
        margin-right: auto;
    }
    
    .submit-btn {
        margin-left: auto;
        margin-right: auto;
        padding: 15px 32px;
        font-size: 1.05rem;
    }
}

/* iPad Air/Pro 10.5" - Portrait 834 x 1112 */
@media (min-width: 820px) and (max-width: 850px) and (min-height: 1095px) and (max-height: 1130px) {
    .hero-container {
        padding-top: 60px;
        margin-top: -40px;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        text-transform: uppercase;
        font-size: 4.3rem;
        font-weight: 500;
        margin-top: 220px;
        margin-bottom: 0px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.95rem;
        font-weight: 400;
        margin-bottom: 12px;
        margin-top: 15px;
        text-align: center;
    }
    
    .hammer-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 95px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    
    .hammer-image {
        width: 115px;
        mix-blend-mode: screen;
    }
    
    .nav-links a {
        font-size: 1.05rem;
    }
    
    .hero-cta {
        margin-top: 38px;
        margin-bottom: 100px;
        justify-content: center;
    }
    
    .hero-cta .cta-button {
        padding: 16px 34px;
        font-size: 1.1rem;
    }
    
    .hero-stats {
        transform: scale(0.87);
        margin-top: -65px;
        margin-left: 0;
        justify-content: center;
        gap: 48px;
        margin-bottom: 100px;
    }
    
    .stat {
        min-height: 100px;
        padding: 15px 15px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 2px solid rgba(33, 150, 243, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .stat-label {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-icon {
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .nav-container {
        padding-left: 5px;
    }
    
    .nav-logo .logo-text-top {
        font-size: 1.35rem;
    }
    
    .nav-logo .logo-text-bottom {
        font-size: 0.68rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
    
    .feature-card {
        padding: 28px 22px;
    }
    
    .feature-card h3 {
        font-size: 1.15rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .middleman-image {
        width: 280px;
    }
    
    .middleman-image-container {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .schedule-widget {
        max-width: 750px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    
    .schedule-info {
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
    }
    
    .schedule-form {
        padding: 32px 38px;
    }
    
    .schedule-header {
        margin-left: auto;
        margin-right: auto;
    }
    
    .submit-btn {
        margin-left: auto;
        margin-right: auto;
        padding: 16px 34px;
        font-size: 1.08rem;
    }
}

/* iPad Air/Pro 10.5" - Landscape 1112 x 834 */
@media (min-width: 1095px) and (max-width: 1130px) and (min-height: 820px) and (max-height: 850px) {
    .hero-container {
        padding-top: 60px;
        margin-top: -40px;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 950px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        text-transform: uppercase;
        font-size: 4.4rem;
        font-weight: 500;
        margin-top: 190px;
        margin-bottom: 0px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 2rem;
        font-weight: 400;
        margin-bottom: 12px;
        margin-top: 15px;
        text-align: center;
    }
    
    .hammer-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 90px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    
    .hammer-image {
        width: 118px;
        mix-blend-mode: screen;
    }
    
    .nav-links a {
        font-size: 1.06rem;
    }
    
    .hero-cta {
        margin-top: 36px;
        margin-bottom: 90px;
        justify-content: center;
    }
    
    .hero-cta .cta-button {
        padding: 16px 34px;
        font-size: 1.1rem;
    }
    
    .hero-stats {
        transform: scale(0.84);
        margin-top: -55px;
        margin-left: 0;
        justify-content: center;
        gap: 50px;
        margin-bottom: 90px;
    }
    
    .stat {
        min-height: 100px;
        padding: 15px 15px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 2px solid rgba(33, 150, 243, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .stat-label {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-icon {
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .nav-container {
        padding-left: 5px;
    }
    
    .nav-logo .logo-text-top {
        font-size: 1.38rem;
    }
    
    .nav-logo .logo-text-bottom {
        font-size: 0.69rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .feature-card {
        padding: 24px 16px;
    }
    
    .feature-card h3 {
        font-size: 1.08rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .middleman-image {
        width: 280px;
    }
    
    .middleman-image-container {
        bottom: -28px;
        transform: translateX(-50%);
    }
    
    .schedule-widget {
        max-width: 950px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    
    .schedule-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }
    
    .schedule-form {
        padding: 32px 40px;
    }
    
    .schedule-header {
        margin-left: auto;
        margin-right: auto;
    }
    
    .submit-btn {
        margin-left: auto;
        margin-right: auto;
        padding: 16px 34px;
        font-size: 1.08rem;
    }
}

/* iPad Pro 11" - Portrait 834 x 1194 */
@media (min-width: 820px) and (max-width: 850px) and (min-height: 1175px) and (max-height: 1210px) {
    .hero-container {
        padding-top: 60px;
        margin-top: -40px;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        text-transform: uppercase;
        font-size: 4.3rem;
        font-weight: 500;
        margin-top: 240px;
        margin-bottom: 0px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.95rem;
        font-weight: 400;
        margin-bottom: 12px;
        margin-top: 15px;
        text-align: center;
    }
    
    .hammer-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    
    .hammer-image {
        width: 115px;
        mix-blend-mode: screen;
    }
    
    .nav-links a {
        font-size: 1.05rem;
    }
    
    .hero-cta {
        margin-top: 40px;
        margin-bottom: 110px;
        justify-content: center;
    }
    
    .hero-cta .cta-button {
        padding: 16px 34px;
        font-size: 1.1rem;
    }
    
    .hero-stats {
        transform: scale(0.87);
        margin-top: -70px;
        margin-left: 0;
        justify-content: center;
        gap: 48px;
        margin-bottom: 110px;
    }
    
    .stat {
        min-height: 100px;
        padding: 15px 15px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 2px solid rgba(33, 150, 243, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .stat-label {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-icon {
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .nav-container {
        padding-left: 5px;
    }
    
    .nav-logo .logo-text-top {
        font-size: 1.35rem;
    }
    
    .nav-logo .logo-text-bottom {
        font-size: 0.68rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
    
    .feature-card {
        padding: 28px 22px;
    }
    
    .feature-card h3 {
        font-size: 1.15rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .middleman-image {
        width: 280px;
    }
    
    .middleman-image-container {
        bottom: -28px;
        transform: translateX(-50%);
    }
    
    .schedule-widget {
        max-width: 750px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    
    .schedule-info {
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
    }
    
    .schedule-form {
        padding: 32px 38px;
    }
    
    .schedule-header {
        margin-left: auto;
        margin-right: auto;
    }
    
    .submit-btn {
        margin-left: auto;
        margin-right: auto;
        padding: 16px 34px;
        font-size: 1.08rem;
    }
}

/* iPad Pro 11" - Landscape 1194 x 834 */
@media (min-width: 1175px) and (max-width: 1210px) and (min-height: 820px) and (max-height: 850px) {
    .hero-container {
        padding-top: 60px;
        margin-top: -40px;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        text-transform: uppercase;
        font-size: 4.5rem;
        font-weight: 500;
        margin-top: 190px;
        margin-bottom: 0px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 2.05rem;
        font-weight: 400;
        margin-bottom: 12px;
        margin-top: 15px;
        text-align: center;
    }
    
    .hammer-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 92px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    
    .hammer-image {
        width: 120px;
        mix-blend-mode: screen;
    }
    
    .nav-links a {
        font-size: 1.07rem;
    }
    
    .hero-cta {
        margin-top: 37px;
        margin-bottom: 95px;
        justify-content: center;
    }
    
    .hero-cta .cta-button {
        padding: 17px 35px;
        font-size: 1.11rem;
    }
    
    .hero-stats {
        transform: scale(0.86);
        margin-top: -60px;
        margin-left: 0;
        justify-content: center;
        gap: 50px;
        margin-bottom: 95px;
    }
    
    .stat {
        min-height: 100px;
        padding: 15px 15px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 2px solid rgba(33, 150, 243, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .stat-label {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-icon {
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: 2.05rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .nav-container {
        padding-left: 5px;
    }
    
    .nav-logo .logo-text-top {
        font-size: 1.4rem;
    }
    
    .nav-logo .logo-text-bottom {
        font-size: 0.7rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 17px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.92rem;
    }
    
    .middleman-image {
        width: 285px;
    }
    
    .middleman-image-container {
        bottom: -28px;
        transform: translateX(-50%);
    }
    
    .schedule-widget {
        max-width: 1000px;
        display: flex;
        flex-direction: column;
        gap: 33px;
    }
    
    .schedule-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }
    
    .schedule-form {
        padding: 33px 42px;
    }
    
    .schedule-header {
        margin-left: auto;
        margin-right: auto;
    }
    
    .submit-btn {
        margin-left: auto;
        margin-right: auto;
        padding: 17px 35px;
        font-size: 1.09rem;
    }
}

/* iPad Pro 12.9" - Portrait 1024 x 1366 */
@media (min-width: 1010px) and (max-width: 1040px) and (min-height: 1350px) and (max-height: 1380px) {
    .hero-container {
        padding-top: 60px;
        margin-top: -40px;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        text-transform: uppercase;
        font-size: 4.8rem;
        font-weight: 500;
        margin-top: 280px;
        margin-bottom: 0px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 2.15rem;
        font-weight: 400;
        margin-bottom: 12px;
        margin-top: 15px;
        text-align: center;
    }
    
    .hammer-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 110px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    
    .hammer-image {
        width: 125px;
        mix-blend-mode: screen;
    }
    
    .nav-links a {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        margin-top: 42px;
        margin-bottom: 120px;
        justify-content: center;
    }
    
    .hero-cta .cta-button {
        padding: 18px 36px;
        font-size: 1.15rem;
    }
    
    .hero-stats {
        transform: scale(0.9);
        margin-top: -80px;
        margin-left: 0;
        justify-content: center;
        gap: 52px;
        margin-bottom: 120px;
    }
    
    .stat {
        min-height: 100px;
        padding: 15px 15px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 2px solid rgba(33, 150, 243, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .stat-label {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-icon {
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: 2.15rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .nav-container {
        padding-left: 5px;
    }
    
    .nav-logo .logo-text-top {
        font-size: 1.42rem;
    }
    
    .nav-logo .logo-text-bottom {
        font-size: 0.71rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
    
    .middleman-image {
        width: 300px;
    }
    
    .middleman-image-container {
        bottom: -30px;
        transform: translateX(-50%);
    }
    
    .schedule-widget {
        max-width: 900px;
        display: flex;
        flex-direction: column;
        gap: 35px;
    }
    
    .schedule-info {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .schedule-form {
        padding: 35px 45px;
    }
    
    .schedule-header {
        margin-left: auto;
        margin-right: auto;
    }
    
    .submit-btn {
        margin-left: auto;
        margin-right: auto;
        padding: 18px 36px;
        font-size: 1.12rem;
    }
}

/* MacBook Air 13" (older models) - 1366 x 768 */
@media (min-width: 1350px) and (max-width: 1380px) and (min-height: 750px) and (max-height: 785px) {
    .hero-container {
        padding-top: 60px;
        margin-top: -40px;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 800px;
    }
    
    .hero-title {
        text-transform: uppercase;
        font-size: 4.5rem;
        font-weight: 500;
        margin-top: 280px;
        margin-bottom: 0px;
        margin-left: 0;
    }
    
    .hero-subtitle {
        margin-left: 0;
        font-size: 2rem;
        font-weight: 400;
        margin-bottom: 12px;
        margin-top: 15px;
    }
    
    .hammer-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    
    .hammer-image {
        width: 120px;
        mix-blend-mode: screen;
    }
    
    .nav-links a {
        font-size: 1.05rem;
    }
    
    .hero-cta {
        margin-top: 30px;
        margin-bottom: 100px;
        justify-content: center;
    }
    
    .hero-cta .cta-button {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    .hero-stats {
        transform: scale(0.85);
        margin-top: -20px;
        margin-left: 0;
        justify-content: center;
        gap: 50px;
        margin-bottom: 100px;
    }
    
    .stat {
        min-height: 100px;
        padding: 15px 15px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 2px solid rgba(33, 150, 243, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .stat-label {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-icon {
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .nav-container {
        padding-left: 5px;
    }
    
    .nav-logo .logo-text-top {
        font-size: 1.4rem;
    }
    
    .nav-logo .logo-text-bottom {
        font-size: 0.7rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .middleman-image {
        width: 280px;
    }
    
    .middleman-image-container {
        bottom: -30px;
        transform: translateX(-50%);
    }
    
    .schedule-widget {
        max-width: 1000px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .schedule-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .schedule-form {
        padding: 30px 40px;
    }
    
    .submit-btn {
        margin-left: auto;
        margin-right: auto;
        padding: 16px 35px;
        font-size: 1.05rem;
    }
}

/* MacBook Air 13" (most common) - 1440 x 900 */
@media (min-width: 1420px) and (max-width: 1460px) and (min-height: 880px) and (max-height: 920px) {
    .hero-container {
        padding-top: 60px;
        margin-top: -40px;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 900px;
    }
    
    .hero-title {
        text-transform: uppercase;
        font-size: 5rem;
        font-weight: 500;
        margin-top: 300px;
        margin-bottom: 0px;
        margin-left: 0;
    }
    
    .hero-subtitle {
        margin-left: 0;
        font-size: 2.1rem;
        font-weight: 400;
        margin-bottom: 12px;
        margin-top: 15px;
    }
    
    .hammer-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 105px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    
    .hammer-image {
        width: 125px;
        mix-blend-mode: screen;
    }
    
    .nav-links a {
        font-size: 1.08rem;
    }
    
    .hero-cta {
        margin-top: 32px;
        margin-bottom: 110px;
        justify-content: center;
    }
    
    .hero-cta .cta-button {
        padding: 17px 36px;
        font-size: 1.12rem;
    }
    
    .hero-stats {
        transform: scale(0.88);
        margin-top: -25px;
        margin-left: 0;
        justify-content: center;
        gap: 52px;
        margin-bottom: 110px;
    }
    
    .stat {
        min-height: 100px;
        padding: 15px 15px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 2px solid rgba(33, 150, 243, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .stat-label {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-icon {
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: 2.1rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .nav-container {
        padding-left: 5px;
    }
    
    .nav-logo .logo-text-top {
        font-size: 1.45rem;
    }
    
    .nav-logo .logo-text-bottom {
        font-size: 0.72rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
    }
    
    .feature-card {
        padding: 28px 18px;
    }
    
    .feature-card h3 {
        font-size: 1.15rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .middleman-image {
        width: 300px;
    }
    
    .middleman-image-container {
        bottom: -30px;
        transform: translateX(-50%);
    }
    
    .schedule-widget {
        max-width: 1050px;
        display: flex;
        flex-direction: column;
        gap: 35px;
    }
    
    .schedule-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }
    
    .schedule-form {
        padding: 35px 45px;
    }
    
    .submit-btn {
        margin-left: auto;
        margin-right: auto;
        padding: 17px 36px;
        font-size: 1.08rem;
    }
}

/* MacBook Air 15" - 1512 x 982 */
@media (min-width: 1490px) and (max-width: 1530px) and (min-height: 960px) and (max-height: 1000px) {
    .hero-container {
        padding-top: 60px;
        margin-top: -40px;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 950px;
    }
    
    .hero-title {
        text-transform: uppercase;
        font-size: 5.5rem;
        font-weight: 500;
        margin-top: 320px;
        margin-bottom: 0px;
        margin-left: 0;
    }
    
    .hero-subtitle {
        margin-left: 0;
        font-size: 2.2rem;
        font-weight: 400;
        margin-bottom: 12px;
        margin-top: 15px;
    }
    
    .hammer-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 110px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    
    .hammer-image {
        width: 130px;
        mix-blend-mode: screen;
    }
    
    .nav-links a {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        margin-top: 35px;
        margin-bottom: 120px;
        justify-content: center;
    }
    
    .hero-cta .cta-button {
        padding: 18px 38px;
        font-size: 1.15rem;
    }
    
    .hero-stats {
        transform: scale(0.9);
        margin-top: -28px;
        margin-left: 0;
        justify-content: center;
        gap: 55px;
        margin-bottom: 120px;
    }
    
    .stat {
        min-height: 100px;
        padding: 15px 15px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 2px solid rgba(33, 150, 243, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .stat-label {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        line-height: 1;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-icon {
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .nav-container {
        padding-left: 5px;
    }
    
    .nav-logo .logo-text-top {
        font-size: 1.5rem;
    }
    
    .nav-logo .logo-text-bottom {
        font-size: 0.75rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
    
    .middleman-image {
        width: 320px;
    }
    
    .middleman-image-container {
        bottom: -30px;
        transform: translateX(-50%);
    }
    
    .schedule-widget {
        max-width: 1100px;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .schedule-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .schedule-form {
        padding: 40px 50px;
    }
    
    .submit-btn {
        margin-left: auto;
        margin-right: auto;
        padding: 18px 38px;
        font-size: 1.1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-title {
        display: none;
    }
    
    .mobile-title {
        display: inline;
    }
    
    .hero-title {
        text-transform: uppercase;
    }
    
    /* Subtle arrows for all mobile dimensions */
    .flow-arrow-vertical i {
        font-size: 0.9rem !important;
        color: rgba(255, 255, 255, 0.5) !important;
        opacity: 1 !important;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .slide-menu {
        width: 100%;
        right: -100%;
    }
    
    /* Show logo with smaller text on mobile */
    .nav-logo .logo-circle,
    .footer-logo .logo-circle {
        display: flex;
        width: 45px;
        height: 45px;
    }
    
    .nav-logo .logo-text {
        position: static;
    }
    
    .nav-logo .logo-container,
    .footer-logo .logo-container {
        justify-content: center;
    }
    
    .nav-logo .logo-text,
    .footer-logo .logo-text {
        align-items: center;
        text-align: center;
        position: relative;
    }
    
    .nav-logo .logo-text-image,
    .footer-logo .logo-text-image {
        height: 80px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-logo .logo-text-slab,
    .footer-logo .logo-text-slab {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        align-items: center;
        text-align: center;
    }
    
    .nav-logo .logo-text-top {
        font-size: 1.3rem;
    }
    
    .nav-logo .logo-text-bottom {
        font-size: 0.65rem;
    }
    
    .nav-logo .logo-main,
    .footer-logo .logo-main {
        font-size: 1.2rem;
        font-weight: 800;
        letter-spacing: 2px;
        color: #ffffff;
        -webkit-text-stroke: 0px;
    }
    
    .nav-logo .logo-sub,
    .footer-logo .logo-sub {
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 3px;
    }
    
    /* Modal and Founder Section Mobile Fix */
    .modal-content {
        width: 95%;
        max-width: 500px;
        max-height: 90vh;
        overflow-y: auto;
        padding: 0;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .founder-section {
        margin-bottom: 30px;
    }
    
    .founder-info {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .founder-image {
        width: 60px;
        height: 60px;
    }
    
    .founder-image i {
        font-size: 1.5rem;
    }
    
    .founder-details {
        width: 100%;
    }
    
    .founder-details h3 {
        font-size: 1.3rem !important;
        word-wrap: break-word;
    }
    
    .founder-title {
        font-size: 0.9rem !important;
    }
    
    .founder-education {
        font-size: 0.85rem !important;
        line-height: 1.4;
    }
    
    .about-story p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .about-story ul {
        font-size: 0.9rem;
    }
    
    /* Quote Section Mobile Fix */
    .quote-section {
        padding: 80px 20px;
        overflow-x: hidden;
    }
    
    .quote-widget {
        width: 100%;
        max-width: 100%;
        padding: 30px 20px;
        margin: 0;
        box-sizing: border-box;
    }
    
    .quote-form {
        width: 100%;
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .contact-method-options {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .contact-option {
        min-height: auto;
    }
    
    .option-label {
        padding: 10px 12px;
        font-size: 0.85rem;
        min-height: 50px;
    }
    
    .file-upload-area {
        padding: 25px 15px;
        min-height: 100px;
    }
    
    .file-upload-area i {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .file-upload-area p {
        font-size: 0.85rem;
    }
    
    .file-upload-area span {
        font-size: 0.75rem;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    /* Schedule Page Info Cards */
    .schedule-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .info-card {
        padding: 25px 20px;
        border-radius: 16px;
        flex: 1;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        background: linear-gradient(135deg, rgba(33, 150, 243, 0.2) 0%, rgba(33, 150, 243, 0.1) 100%);
        border: 2px solid rgba(33, 150, 243, 0.4);
        box-shadow: 0 6px 24px rgba(33, 150, 243, 0.25);
    }
    
    .info-card i {
        font-size: 2rem !important;
        margin-bottom: 15px !important;
        color: #42A5F5;
    }
    
    .info-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 15px !important;
        font-weight: 700;
        font-family: 'Roboto Slab', serif;
        letter-spacing: 0.5px;
        color: #ffffff;
    }
    
    .info-card li {
        padding: 6px 0 !important;
        padding-left: 25px !important;
        font-size: 1rem !important;
        line-height: 1.5 !important;
        font-family: 'Roboto Slab', serif;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.95);
    }
    
    .info-card li::before {
        font-size: 1rem !important;
        color: #42A5F5;
    }
    
    .info-card p {
        font-size: 1rem !important;
        font-family: 'Roboto Slab', serif;
        font-weight: 400;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.95);
    }
    
    .hero {
        min-height: 100vh;
        padding: 0;
        display: flex;
        align-items: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100vh;
        padding: 120px 0 30px;
    }
    
    .hero-content {
        display: contents;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-top: 0;
        margin-bottom: 20px;
        line-height: 1.3;
        order: 1;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-visual {
        order: 2;
        margin-top: 0;
        margin-bottom: 20px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-subtitle {
        margin-bottom: 25px;
        font-size: 0.9rem;
        line-height: 1.5;
        order: 3;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-cta {
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
        width: 100%;
        order: 4;
        padding: 0 20px;
    }
    
    .hero-cta .cta-button {
        padding: 15px 30px;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
        margin-top: 0;
        width: 100%;
        display: flex;
        order: 5;
        padding: 0 20px;
    }
    
    .stat {
        padding: 15px 10px;
        flex: 1;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 3px;
    }
    
    .stat-icon i {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .stat-description {
        font-size: 0.65rem;
    }
    
    /* Horizontal Diagram for Mobile */
    .concept-diagram {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 15px 0px;
        max-width: 100%;
        gap: 10px;
        margin-left: 0;
    }
    
    .diagram-node {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .node-icon {
        width: 55px;
        height: 55px;
    }
    
    .node-icon i {
        font-size: 1.6rem;
    }
    
    .node-label {
        font-size: 0.7rem;
        white-space: nowrap;
        line-height: 1.1;
        margin-top: 5px;
    }
    
    /* Horizontal flow arrows */
    .vertical-flow {
        flex-direction: row;
        margin: 0;
        gap: 6px;
        flex-shrink: 0;
        align-items: center;
    }
    
    .flow-arrow-vertical {
        transform: rotate(-90deg);
    }
    
    .flow-arrow-vertical i {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.5);
        opacity: 1;
    }
    
    .middleman-crossed {
        padding: 8px 15px;
        gap: 8px;
        flex-shrink: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: transparent;
        border-radius: 12px;
    }
    
    .small-node {
        width: 40px;
        height: 40px;
    }
    
    .crossed-out {
        border: 2px solid rgba(255, 255, 255, 0.45) !important;
        background: rgba(40, 40, 50, 0.2) !important;
    }
    
    .crossed-out i {
        color: rgba(255, 255, 255, 0.7) !important;
    }
    
    .small-node i {
        font-size: 1.1rem;
    }
    
    .cross-line {
        background: rgba(255, 255, 255, 0.6) !important;
        box-shadow: none !important;
        height: 3px !important;
        width: 120% !important;
        margin-left: -60% !important;
    }
    
    .cross-line::after {
        display: none !important;
    }
    
    .cross-label {
        font-size: 0.6rem;
        line-height: 1.2;
        max-width: 75px;
        text-align: center;
        white-space: normal;
        word-wrap: break-word;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
    }
    
    .tradesman-node .node-icon i {
        font-size: 1.5rem;
    }
    
    /* Platform badge - hide on mobile */
    .platform-badge {
        display: none;
    }
    
    .middleman-crossed {
        padding: 10px 16px;
        gap: 10px;
        background: transparent;
        border-radius: 12px;
    }
    
    .crossed-out {
        border: 2px solid rgba(255, 255, 255, 0.45) !important;
        background: rgba(40, 40, 50, 0.2) !important;
    }
    
    .crossed-out i {
        color: rgba(255, 255, 255, 0.7) !important;
    }
    
    .cross-line {
        background: rgba(255, 255, 255, 0.6) !important;
        box-shadow: none !important;
        height: 3px !important;
    }
    
    .cross-line::after {
        display: none !important;
    }
    
    .cross-label {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
    }
    
    .badge-content span {
        font-size: 0.75rem;
    }
    
    .schedule-widget {
        grid-template-columns: 1fr;
    }
    
    .quote-widget,
    .schedule-form {
        padding: 30px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method-options {
        grid-template-columns: 1fr;
    }
}

/* Comprehensive Mobile Media Query - All Mobile Devices */
@media (max-width: 768px) {
    .hero-container {
        padding-top: 180px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        min-height: 100vh !important;
    }
    
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
    }
    
    .hammer-image-container {
        position: absolute !important;
        top: 80px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }
    
    .hammer-image {
        width: clamp(100px, 25vw, 140px) !important;
        height: auto !important;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
        margin: 0 0 10px 0 !important;
        order: 1 !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 5px !important;
    }
    
    .hero-title .gradient-text {
        display: block !important;
        white-space: nowrap !important;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.2rem) !important;
        margin: 0 0 20px 0 !important;
        order: 2 !important;
        text-align: center !important;
    }
    
    .hero-cta {
        order: 3 !important;
        margin: 0 0 20px 0 !important;
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .hero-cta .cta-button {
        padding: clamp(10px, 3vw, 14px) clamp(20px, 6vw, 28px) !important;
        font-size: clamp(0.85rem, 3.5vw, 1rem) !important;
    }
    
    .hero-stats {
        order: 4 !important;
        display: flex !important;
        flex-direction: row !important;
        gap: clamp(8px, 2vw, 12px) !important;
        margin: 20px 0 20px 0 !important;
        padding: 0 15px !important;
        width: 100% !important;
        justify-content: center !important;
        transform: scale(clamp(0.75, 0.8, 0.9)) !important;
    }
    
    .stat {
        flex: 1 !important;
        min-width: 0 !important;
        max-width: clamp(100px, 30vw, 130px) !important;
        padding: clamp(10px, 3vw, 15px) clamp(8px, 2vw, 12px) !important;
        min-height: auto !important;
        background: rgba(30, 35, 45, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        border: 2px solid rgba(33, 150, 243, 0.5) !important;
    }
    
    .stat:hover {
        border-color: rgba(33, 150, 243, 0.7) !important;
    }
    
    .stat-icon {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
        margin-bottom: 5px !important;
        width: clamp(50px, 15vw, 65px) !important;
        height: clamp(50px, 15vw, 65px) !important;
        border-radius: 50% !important;
        background: transparent !important;
        border: 3px solid #64B5F6 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .stat-icon i {
        color: #64B5F6 !important;
    }
    
    .stat-number {
        font-size: clamp(1.3rem, 5vw, 1.8rem) !important;
        margin: 5px 0 !important;
    }
    
    .stat-label {
        font-size: clamp(0.65rem, 2.5vw, 0.85rem) !important;
        margin-top: 3px !important;
    }
    
    .stat-description {
        font-size: clamp(0.6rem, 2.2vw, 0.75rem) !important;
        margin-top: 2px !important;
    }
    
    .middleman-image-container {
        order: 5 !important;
        position: relative !important;
        bottom: auto !important;
        margin-top: -40px !important;
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .middleman-image {
        width: clamp(200px, 60vw, 300px) !important;
        height: auto !important;
    }
    
    .hero-visual {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .quote-header h2,
    .schedule-header h1 {
        font-size: 2rem;
        font-family: 'Roboto Slab', serif;
        font-weight: 500;
        letter-spacing: 3px;
        line-height: 1.2;
    }
    
    .schedule-header p {
        font-size: 1.1rem;
        font-family: 'Roboto Slab', serif;
        font-weight: 400;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.95);
        padding: 0 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .launch-date {
        padding: 10px 15px;
        gap: 8px;
    }
    
    .launch-date span {
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .launch-date i {
        font-size: 1rem;
        flex-shrink: 0;
    }
}

/* Success/Error Messages */
.message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading .submit-btn {
    background: #ccc;
    cursor: not-allowed;
}

/* Comprehensive Mobile Landscape - All Mobile Devices */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
    .hammer-image-container {
        top: 100px !important;
    }
    
    .hammer-image {
        width: 60px !important;
        height: auto;
    }
    
    .hero-container {
        padding-top: 140px !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 10px !important;
        margin-top: 35px !important;
        white-space: nowrap !important;
        display: block !important;
    }
    
    .hero-title .gradient-text {
        display: inline !important;
        white-space: nowrap !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 15px !important;
    }
    
    .hero-cta {
        margin-bottom: 15px !important;
    }
    
    .hero-cta .cta-button {
        padding: 12px 32px !important;
        font-size: 0.9rem !important;
    }
    
    .hero-stats {
        gap: 15px !important;
        margin-top: 15px !important;
        margin-bottom: 20px !important;
        transform: scale(0.9) !important;
    }
    
    .stat {
        padding: 8px 12px !important;
        background: rgba(30, 35, 45, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        border: 2px solid rgba(33, 150, 243, 0.5) !important;
    }
    
    .stat:hover {
        border-color: rgba(33, 150, 243, 0.7) !important;
    }
    
    .stat-icon {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        background: transparent !important;
        border: 2px solid #64B5F6 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .stat-icon i {
        font-size: 1.3rem !important;
        color: #64B5F6 !important;
    }
    
    .stat-number {
        font-size: 1.2rem !important;
    }
    
    .stat-label {
        font-size: 0.65rem !important;
    }
    
    .stat-description {
        font-size: 0.55rem !important;
    }
    
    .middleman-image-container {
        margin-top: -25px !important;
    }
    
    .middleman-image {
        width: 180px !important;
    }
}

/* Specific media query for 440x956 dimension */
@media (max-width: 440px) and (min-height: 900px) {
    .hero-container {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .hero-subtitle {
        margin-top: 40px;
        margin-bottom: 15px;
    }
    
    .hero-cta {
        margin-top: 0;
        margin-bottom: 20px;
    }
    
    .hero-cta .cta-button {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
    
    .hero-stats {
        margin-top: 60px;
    }
    
    .hero-visual {
        margin-top: -60px;
        margin-left: 90px;
        transform: scale(1.15);
    }
}

/* Specific media query for 375x667 dimension (iPhone SE, etc.) */
@media (max-width: 375px) and (max-height: 667px) {
    .hero-title {
        margin-top: -20px;
    }
    
    .hero-visual {
        margin-top: -65px;
        margin-left: 15px;
        transform: scale(0.75);
    }
    
    .hero-stats {
        transform: scale(0.75);
        margin-top: -30px;
        margin-bottom: -10px;
    }
    
    .stat {
        padding: 2px 30px;
        min-height: 20px;
        max-width: 150px;
        width: 150px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .stat-description {
        font-size: 0.7rem;
    }
}

/* iPhone SE Landscape - 667x375 */
@media (min-width: 667px) and (max-width: 667px) and (max-height: 375px) and (orientation: landscape) {
    .hammer-image-container {
        top: 60px !important;
    }
    
    .hammer-image {
        width: 80px !important;
        height: auto;
    }
    
    .hero-container {
        padding-top: 140px !important;
    }
    
    .hero-title {
        font-size: 3rem !important;
        margin-bottom: 15px !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 15px !important;
    }
    
    .hero-cta .cta-button {
        padding: 12px 30px !important;
        font-size: 0.9rem !important;
    }
    
    .hero-stats {
        gap: 15px !important;
        margin-top: 20px !important;
    }
    
    .stat {
        padding: 8px 15px !important;
    }
    
    .stat-number {
        font-size: 1.3rem !important;
    }
    
    .stat-label {
        font-size: 0.7rem !important;
    }
    
    .stat-description {
        font-size: 0.6rem !important;
    }
    
    .middleman-image-container {
        margin-top: -30px !important;
    }
    
    .middleman-image {
        width: 200px !important;
    }
}

/* iPhone 16 Landscape - 852x393 */
@media (min-width: 840px) and (max-width: 860px) and (max-height: 400px) and (orientation: landscape) {
    .hammer-image-container {
        top: 100px !important;
    }
    
    .hammer-image {
        width: 55px !important;
        height: auto;
    }
    
    .hero-container {
        padding-top: 140px !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 10px !important;
        margin-top: 35px !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 12px !important;
    }
    
    .hero-cta .cta-button {
        padding: 10px 28px !important;
        font-size: 0.85rem !important;
    }
    
    .hero-stats {
        gap: 12px !important;
        margin-top: 18px !important;
    }
    
    .stat {
        padding: 8px 12px !important;
    }
    
    .stat-number {
        font-size: 1.2rem !important;
    }
    
    .stat-label {
        font-size: 0.65rem !important;
    }
    
    .stat-description {
        font-size: 0.55rem !important;
    }
    
    .middleman-image-container {
        margin-top: -25px !important;
    }
    
    .middleman-image {
        width: 180px !important;
    }
}

/* Styles for very small mobile screens */
@media (max-width: 375px) {
    .launch-date {
        padding: 8px 12px;
        gap: 6px;
    }
    
    .launch-date span {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .launch-date i {
        font-size: 0.9rem;
        flex-shrink: 0;
    }
}

/* Specific media query for 393x852 and iPhone 16e 390x844 Portrait */
@media (min-width: 390px) and (max-width: 400px) and (min-height: 840px) and (max-height: 860px) and (orientation: portrait) {
    .hero-container {
        text-align: center;
        padding-top: 180px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        margin-top: -40px;
        margin-bottom: 30px;
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        margin-top: 20px;
        margin-bottom: 15px;
    }
    
    .hero-cta {
        justify-content: center;
        margin-top: 0;
    }
    
    .hero-stats {
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 25px;
    }
    
    /* Stat Section Theme */
    .stat {
        background: rgba(30, 35, 45, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        border: 2px solid rgba(33, 150, 243, 0.5) !important;
    }
    
    .stat:hover {
        border-color: rgba(33, 150, 243, 0.7) !important;
    }
    
    .stat-icon {
        width: 70px !important;
        height: 70px !important;
        border-radius: 50% !important;
        background: transparent !important;
        border: 3px solid #64B5F6 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .stat-icon i {
        font-size: 2rem !important;
        color: #64B5F6 !important;
    }
    
    .hero-visual {
        justify-content: center;
        margin-top: -60px;
    }
    
    .concept-diagram {
        justify-content: center;
        margin-left: 0;
    }
}

/* iPhone 16e and similar Landscape - 844x390 */
@media (min-width: 840px) and (max-width: 850px) and (max-height: 395px) and (orientation: landscape) {
    .hammer-image-container {
        top: 100px !important;
    }
    
    .hammer-image {
        width: 55px !important;
        height: auto;
    }
    
    .hero-container {
        padding-top: 140px !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 10px !important;
        margin-top: 35px !important;
        white-space: nowrap !important;
        display: block !important;
    }
    
    .hero-title .gradient-text {
        display: inline !important;
        white-space: nowrap !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 12px !important;
    }
    
    .hero-cta .cta-button {
        padding: 10px 28px !important;
        font-size: 0.85rem !important;
    }
    
    .hero-stats {
        gap: 12px !important;
        margin-top: 18px !important;
    }
    
    /* Stat Section Theme */
    .stat {
        padding: 8px 12px !important;
        background: rgba(30, 35, 45, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        border: 2px solid rgba(33, 150, 243, 0.5) !important;
    }
    
    .stat:hover {
        border-color: rgba(33, 150, 243, 0.7) !important;
    }
    
    .stat-icon {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        background: transparent !important;
        border: 2px solid #64B5F6 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .stat-icon i {
        font-size: 1.3rem !important;
        color: #64B5F6 !important;
    }
    
    .stat-number {
        font-size: 1.2rem !important;
    }
    
    .stat-label {
        font-size: 0.65rem !important;
    }
    
    .stat-description {
        font-size: 0.55rem !important;
    }
    
    .middleman-image-container {
        margin-top: -25px !important;
    }
    
    .middleman-image {
        width: 180px !important;
    }
}

/* Specific media query for 402x874 dimension */
@media (min-width: 395px) and (max-width: 410px) and (min-height: 865px) and (max-height: 885px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        margin-top: 25px;
        margin-bottom: 10px;
    }
    
    .hero-cta {
        margin-top: 0;
    }
    
    .hero-cta .cta-button {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
    
    .hero-stats {
        margin-top: 20px;
        margin-left: 0;
    }
    
    .hero-visual {
        margin-top: -60px;
        margin-left: 38px;
    }
}

/* Specific media query for 430x932 dimension */
@media (min-width: 420px) and (max-width: 440px) and (min-height: 920px) and (max-height: 940px) {
    .hero-container {
        padding-top: 170px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hammer-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 120px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    
    .hammer-image {
        width: 150px;
        height: auto;
        mix-blend-mode: screen;
    }
    
    .hero-title {
        font-size: 2.5rem;
        font-weight: 500;
        margin-bottom: 8px;
        margin-top: -50px;
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
        color: #ffffff;
    }
    
    .title-line-1,
    .title-line-2 {
        display: block;
        line-height: 1;
        letter-spacing: 1.5px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 8px;
        margin-top: 5px;
        font-weight: 300;
        font-style: italic;
        order: 3;
    }
    
    .hero-cta {
        margin-bottom: 0px;
        margin-top: 40px;
        order: 4;
    }
    
    .hero-cta .cta-button {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
    
    .hero-stats {
        margin-top: 45px;
        margin-bottom: 20px;
        justify-content: center;
        margin-left: 0px;
        order: 5;
        transform: scale(0.7);
        gap: 17px;
    }
    
    .stat {
        min-width: 120px;
        max-width: 120px;
        padding: 18px 11px;
        min-height: 105px;
        gap: 4px;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .stat-label {
        font-size: 0.85rem;
        font-weight: 400;
        font-family: 'Roboto Slab', serif;
        line-height: 1.1;
        margin-top: 2px;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        font-size: 0.75rem;
        font-weight: 400;
        font-family: 'Roboto Slab', serif;
        line-height: 1.1;
        margin-top: -2px;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-icon {
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .middleman-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        z-index: 10;
    }
    
    .middleman-image {
        width: 320px;
        height: auto;
    }
}

/* Custom layout for 393x852 dimension */
@media (min-width: 390px) and (max-width: 400px) and (min-height: 840px) and (max-height: 860px) {
    .hero-container {
        padding-top: 200px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hammer-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 120px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    
    .hammer-image {
        width: 135px;
        height: auto;
        mix-blend-mode: screen;
    }
    
    .hero-title {
        font-size: 2.2rem;
        font-weight: 500;
        margin-bottom: 8px;
        margin-top: -50px;
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
        color: #ffffff;
    }
    
    .title-line-1,
    .title-line-2 {
        display: block;
        line-height: 1;
        letter-spacing: 1.5px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 8px;
        margin-top: 5px;
        font-weight: 300;
        font-style: italic;
        order: 3;
    }
    
    .hero-cta {
        margin-bottom: 0px;
        margin-top: 40px;
        order: 4;
    }
    
    .hero-cta .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        margin-top: 45px;
        margin-bottom: 20px;
        justify-content: center;
        margin-left: 0px;
        order: 5;
        transform: scale(0.8);
        gap: 17px;
    }
    
    .stat {
        min-width: 120px;
        max-width: 120px;
        padding: 18px 11px;
        min-height: 105px;
        gap: 4px;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .stat-label {
        font-size: 0.85rem;
        font-weight: 400;
        font-family: 'Roboto Slab', serif;
        line-height: 1.1;
        margin-top: 2px;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        font-size: 0.75rem;
        font-weight: 400;
        font-family: 'Roboto Slab', serif;
        line-height: 1.1;
        margin-top: -2px;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-icon {
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .middleman-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(calc(-50% + 5px));
        width: 100%;
        z-index: 10;
    }
    
    .middleman-image {
        width: 320px;
        height: auto;
    }
}

/* Match 393x852 layout for 402x874 dimension */
@media (min-width: 400px) and (max-width: 410px) and (min-height: 865px) and (max-height: 885px) {
    .hero-container {
        padding-top: 200px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hammer-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 120px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    
    .hammer-image {
        width: 135px;
        height: auto;
        mix-blend-mode: screen;
    }
    
    .hero-title {
        font-size: 2.2rem;
        font-weight: 500;
        margin-bottom: 8px;
        margin-top: -50px;
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
        color: #ffffff;
    }
    
    .title-line-1,
    .title-line-2 {
        display: block;
        line-height: 1;
        letter-spacing: 1.5px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 8px;
        margin-top: 5px;
        font-weight: 300;
        font-style: italic;
        order: 3;
    }
    
    .hero-cta {
        margin-bottom: 0px;
        margin-top: 40px;
        order: 4;
    }
    
    .hero-cta .cta-button {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
    
    .hero-stats {
        margin-top: 45px;
        margin-bottom: 20px;
        justify-content: center;
        margin-left: 0px;
        order: 5;
        transform: scale(0.8);
        gap: 17px;
    }
    
    .stat {
        min-width: 120px;
        max-width: 120px;
        padding: 18px 11px;
        min-height: 105px;
        gap: 4px;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .stat-label {
        font-size: 0.85rem;
        font-weight: 400;
        font-family: 'Roboto Slab', serif;
        line-height: 1.1;
        margin-top: 2px;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        font-size: 0.75rem;
        font-weight: 400;
        font-family: 'Roboto Slab', serif;
        line-height: 1.1;
        margin-top: -2px;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-icon {
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .middleman-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(calc(-50% + 5px));
        width: 100%;
        z-index: 10;
    }
    
    .middleman-image {
        width: 320px;
        height: auto;
    }
}

/* Match 393x852 layout for 440x956 dimension */
@media (min-width: 435px) and (max-width: 445px) and (min-height: 945px) and (max-height: 965px) {
    .hero-container {
        padding-top: 200px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hammer-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 120px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    
    .hammer-image {
        width: 150px;
        height: auto;
        mix-blend-mode: screen;
    }
    
    .hero-title {
        font-size: 2.4rem;
        font-weight: 500;
        margin-bottom: 8px;
        margin-top: -50px;
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
        color: #ffffff;
    }
    
    .title-line-1,
    .title-line-2 {
        display: block;
        line-height: 1;
        letter-spacing: 1.5px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 8px;
        margin-top: 5px;
        font-weight: 300;
        font-style: italic;
        order: 3;
    }
    
    .hero-cta {
        margin-bottom: 0px;
        margin-top: 40px;
        order: 4;
    }
    
    .hero-cta .cta-button {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
    
    .hero-stats {
        margin-top: 45px;
        margin-bottom: 20px;
        justify-content: center;
        margin-left: 0px;
        order: 5;
        transform: scale(0.7);
        gap: 17px;
    }
    
    .stat {
        min-width: 120px;
        max-width: 120px;
        padding: 18px 11px;
        min-height: 105px;
        gap: 4px;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .stat-label {
        font-size: 0.85rem;
        font-weight: 400;
        font-family: 'Roboto Slab', serif;
        line-height: 1.1;
        margin-top: 2px;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        font-size: 0.75rem;
        font-weight: 400;
        font-family: 'Roboto Slab', serif;
        line-height: 1.1;
        margin-top: -2px;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-icon {
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .middleman-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(calc(-50% + 5px));
        width: 100%;
        z-index: 10;
    }
    
    .middleman-image {
        width: 320px;
        height: auto;
    }
}

/* Match 393x852 layout for 375x667 dimension */
@media (min-width: 370px) and (max-width: 380px) and (min-height: 655px) and (max-height: 680px) {
    .hero-container {
        padding-top: 200px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hammer-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 102px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    
    .hammer-image {
        width: 120px;
        height: auto;
        mix-blend-mode: screen;
    }
    
    .hero-title {
        font-size: 2.0rem;
        font-weight: 500;
        margin-bottom: 8px;
        margin-top: 8px;
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
        color: #ffffff;
    }
    
    .title-line-1,
    .title-line-2 {
        display: block;
        line-height: 1;
        letter-spacing: 1.5px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 8px;
        margin-top: -2px;
        font-weight: 300;
        font-style: italic;
        order: 3;
    }
    
    .hero-cta {
        margin-bottom: 0px;
        margin-top: 17px;
        order: 4;
    }
    
    .hero-cta .cta-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .hero-stats {
        margin-top: 7px;
        margin-bottom: 20px;
        justify-content: center;
        margin-left: 0px;
        order: 5;
        transform: scale(0.6);
        gap: 17px;
    }
    
    .stat {
        min-width: 120px;
        max-width: 120px;
        padding: 18px 11px;
        min-height: 105px;
        gap: 4px;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .stat-label {
        font-size: 0.85rem;
        font-weight: 400;
        font-family: 'Roboto Slab', serif;
        line-height: 1.1;
        margin-top: 2px;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        font-size: 0.75rem;
        font-weight: 400;
        font-family: 'Roboto Slab', serif;
        line-height: 1.1;
        margin-top: -2px;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-icon {
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .middleman-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(calc(-50% + 5px));
        width: 100%;
        z-index: 10;
    }
    
    .middleman-image {
        width: 240px;
        height: auto;
    }
}

/* iPhone XR, 11, 11 Pro Max - 414 x 896 */
@media (min-width: 410px) and (max-width: 420px) and (min-height: 885px) and (max-height: 905px) {
    .hero-container {
        padding-top: 210px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hammer-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 105px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    
    .hammer-image {
        width: 125px;
        height: auto;
        mix-blend-mode: screen;
    }
    
    .hero-title {
        font-size: 2.2rem;
        font-weight: 500;
        margin-bottom: 8px;
        margin-top: 8px;
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
        color: #ffffff;
    }
    
    .title-line-1,
    .title-line-2 {
        display: block;
        line-height: 1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        order: 3;
        margin-top: 8px;
        margin-bottom: 0px;
        text-align: center;
        margin-left: 0px;
    }
    
    .hero-cta {
        order: 4;
        margin-top: 20px;
        margin-bottom: 0px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        order: 5;
        display: flex;
        flex-direction: row;
        gap: 6px;
        margin-top: 10px;
        padding: 0px 15px;
        margin-left: 0px;
        transform: scale(0.85);
    }
    
    .stat {
        flex: 1;
        min-width: 0;
        max-width: 110px;
        padding: 8px 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .stat-label {
        font-size: 0.8rem;
        font-weight: 400;
        font-family: 'Roboto Slab', serif;
        line-height: 1.1;
        margin-top: 2px;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-description {
        font-size: 0.7rem;
        font-weight: 400;
        font-family: 'Roboto Slab', serif;
        line-height: 1.1;
        margin-top: -2px;
        color: rgba(255, 255, 255, 0.85);
        font-style: italic;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-icon {
        color: #2196F3;
        border: 3px solid #2196F3 !important;
    }
    
    .stat-icon i {
        color: #2196F3;
    }
    
    .middleman-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(calc(-50% + 5px));
        width: 100%;
        z-index: 10;
    }
    
    .middleman-image {
        width: 340px;
        height: auto;
    }
}
