/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2E2E2E;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   BRAND COLORS
   ======================================== */
:root {
    --orange: #FF671F;
    --orange-light: #FF8040;
    --orange-lighter: #FF9F5A;
    --green: #046A38;
    --green-light: #057A45;
    --green-lighter: #058A4A;
    --navy: #1A237E;
    --navy-light: #3949AB;
    --dark: #2E2E2E;
    --gray: #F5F5F5;
    --gold: #FFD700;
    --white: #ffffff;
}

/* ========================================
   LAYOUT & CONTAINERS
   ======================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-small {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
}

.section-white {
    background: #ffffff;
}

.section-gray {
    background: var(--gray);
}

.section-bordered {
    border-top: 1px solid rgba(46, 46, 46, 0.1);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
}

.gradient-text {
    background: linear-gradient(to right, var(--orange), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-gold {
    background: linear-gradient(to right, var(--orange), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: linear-gradient(to right, var(--orange), var(--green));
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--orange-light), var(--green-light));
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-full {
    width: 100%;
}

.btn-with-icon .icon.arrow {
    transition: transform 0.3s ease;
}

.btn-with-icon:hover .icon.arrow {
    transform: translateX(4px);
}

.btn .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-lg .icon {
    width: 1.375rem;
    height: 1.375rem;
}

.icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navigation {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(46, 46, 46, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--orange), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-text {
    display: none;
}

.logo-title {
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: rgba(46, 46, 46, 0.6);
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-cta {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(46, 46, 46, 0.2);
    border-radius: 0.375rem;
    transition: background 0.2s;
}

.mobile-menu-btn:hover {
    background: var(--gray);
}

.mobile-menu-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid rgba(46, 46, 46, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-link {
    color: var(--dark);
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--orange);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy) 70%, var(--green) 100%);
    color: white;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-grid {
    position: relative;
    padding: 4rem 0;
    display: grid;
    gap: 3rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    width: fit-content;
    font-size: 0.875rem;
}

.trust-badge .flag {
    font-size: 1.5rem;
}

.hero-title {
    font-size: 2rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

.hero-image {
    position: relative;
    height: 400px;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 103, 31, 0.2), transparent);
    border-radius: 1rem;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ========================================
   SOCIAL PROOF STRIP
   ======================================== */
.social-proof {
    border-top: 1px solid rgba(46, 46, 46, 0.1);
    border-bottom: 1px solid rgba(46, 46, 46, 0.1);
    background: white;
    padding: 3rem 0;
}

.social-proof-title {
    text-align: center;
    margin-bottom: 2rem;
}

.social-proof-title p {
    color: rgba(46, 46, 46, 0.6);
}

.industry-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.badge {
    background: var(--gray);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    border: 1px solid rgba(46, 46, 46, 0.05);
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(46, 46, 46, 0.7);
    line-height: 1.6;
}

.section-label {
    display: inline-block;
    color: var(--orange);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-label-orange {
    color: var(--orange);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

/* ========================================
   MACHINE RANGE CARDS
   ======================================== */
.machine-grid {
    display: grid;
    gap: 1.5rem;
}

.machine-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.machine-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-accent {
    height: 0.5rem;
}

.machine-card[data-color="orange"] .card-accent {
    background: linear-gradient(to right, var(--orange), var(--orange-lighter));
}

.machine-card[data-color="green"] .card-accent {
    background: linear-gradient(to right, var(--green), var(--green-lighter));
}

.machine-card[data-color="navy"] .card-accent {
    background: linear-gradient(to right, var(--navy), var(--navy-light));
}

.machine-card[data-color="dark"] .card-accent {
    background: linear-gradient(to right, #2E2E2E, #424242);
}

.machine-card[data-color="gradient"] .card-accent {
    background: linear-gradient(to right, var(--orange), var(--green));
}

.machine-card[data-color="navy-green"] .card-accent {
    background: linear-gradient(to right, var(--navy), var(--green));
}

.card-header {
    padding: 1.5rem;
}

.card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.machine-card:hover .card-icon {
    transform: scale(1.1);
}

.machine-card[data-color="orange"] .card-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-lighter));
}

.machine-card[data-color="green"] .card-icon {
    background: linear-gradient(135deg, var(--green), var(--green-lighter));
}

.machine-card[data-color="navy"] .card-icon {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.machine-card[data-color="dark"] .card-icon {
    background: linear-gradient(135deg, #2E2E2E, #424242);
}

.machine-card[data-color="gradient"] .card-icon {
    background: linear-gradient(135deg, var(--orange), var(--green));
}

.machine-card[data-color="navy-green"] .card-icon {
    background: linear-gradient(135deg, var(--navy), var(--green));
}

.card-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.card-title {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.card-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    color: white;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.machine-card[data-color="orange"] .card-badge {
    background: linear-gradient(to right, var(--orange), var(--orange-lighter));
}

.machine-card[data-color="green"] .card-badge {
    background: linear-gradient(to right, var(--green), var(--green-lighter));
}

.machine-card[data-color="navy"] .card-badge {
    background: linear-gradient(to right, var(--navy), var(--navy-light));
}

.machine-card[data-color="dark"] .card-badge {
    background: linear-gradient(to right, #2E2E2E, #424242);
}

.machine-card[data-color="gradient"] .card-badge {
    background: linear-gradient(to right, var(--orange), var(--green));
}

.machine-card[data-color="navy-green"] .card-badge {
    background: linear-gradient(to right, var(--navy), var(--green));
}

.card-content {
    padding: 0 1.5rem 1.5rem;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(46, 46, 46, 0.8);
}

.card-list li::before {
    content: "•";
    color: var(--green);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-choose-us {
    position: relative;
    background: linear-gradient(135deg, var(--navy), var(--green));
    color: white;
    padding: 4rem 0;
    overflow: hidden;
}

.why-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.why-grid {
    position: relative;
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-title {
    font-size: 2rem;
    line-height: 1.3;
}

.why-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    gap: 1rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    transition: background 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.why-image {
    position: relative;
    margin-top: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.why-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

/* ========================================
   APPLICATION INDUSTRIES
   ======================================== */
.industries-grid {
    display: grid;
    gap: 1.5rem;
}

.industry-card {
    position: relative;
    background: white;
    border: 1px solid rgba(46, 46, 46, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: rgba(255, 103, 31, 0.5);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.industry-image {
    position: relative;
    height: 10rem;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.1);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 35, 126, 0.9), rgba(26, 35, 126, 0.5), transparent);
}

.industry-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.industry-content {
    padding: 1.25rem;
}

.industry-content h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.industry-content p {
    font-size: 0.875rem;
    color: rgba(46, 46, 46, 0.7);
}

/* ========================================
   END TO END SUPPORT (PHASES)
   ======================================== */
.phases-grid {
    position: relative;
    display: grid;
    gap: 2rem;
}

.connecting-line {
    display: none;
}

.phase-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(46, 46, 46, 0.05);
    transition: box-shadow 0.3s ease;
}

.phase-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.phase-icon {
    position: relative;
    z-index: 10;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.phase-icon[data-color="orange"] {
    background: linear-gradient(135deg, var(--orange), var(--orange-lighter));
}

.phase-icon[data-color="green"] {
    background: linear-gradient(135deg, var(--green), var(--green-lighter));
}

.phase-icon[data-color="navy"] {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.phase-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.phase-title {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.phase-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.phase-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(46, 46, 46, 0.8);
}

.phase-list li::before {
    content: "";
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.phase-card:nth-child(1) .phase-list li::before {
    background: linear-gradient(to right, var(--orange), var(--orange-lighter));
}

.phase-card:nth-child(2) .phase-list li::before {
    background: linear-gradient(to right, var(--green), var(--green-lighter));
}

.phase-card:nth-child(3) .phase-list li::before {
    background: linear-gradient(to right, var(--navy), var(--navy-light));
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison-table {
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(46, 46, 46, 0.1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(to right, var(--navy), var(--green));
}

.comparison-table th {
    padding: 1rem;
    color: white;
    font-weight: 600;
    text-align: left;
}

.comparison-table th.highlight-col {
    background: rgba(255, 103, 31, 0.2);
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(46, 46, 46, 0.05);
}

.comparison-table tbody tr.row-alt {
    background: var(--gray);
}

.comparison-table td {
    padding: 1rem;
}

.feature-name {
    color: var(--navy);
    font-weight: 500;
}

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

.highlight-cell {
    background: linear-gradient(to right, rgba(255, 103, 31, 0.05), rgba(4, 106, 56, 0.05));
}

.cross-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #fee;
    color: #c33;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--green);
    margin: 0 auto;
}

.check-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: linear-gradient(to right, var(--orange), var(--green));
    color: white;
    font-size: 0.875rem;
}

.partial-text {
    color: rgba(46, 46, 46, 0.6);
}

.comparison-note {
    text-align: center;
    margin-top: 2rem;
}

.comparison-note p {
    color: rgba(46, 46, 46, 0.7);
    font-style: italic;
}

/* ========================================
   ABOUT PREVIEW
   ======================================== */
.about-grid {
    display: grid;
    gap: 3rem;
}

.about-image-wrapper {
    position: relative;
}

.about-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to right, rgba(255, 103, 31, 0.2), rgba(4, 106, 56, 0.2));
    border-radius: 1rem;
    filter: blur(2rem);
}

.about-image {
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-title {
    color: var(--navy);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-description {
    font-size: 1.125rem;
    color: rgba(46, 46, 46, 0.7);
    line-height: 1.6;
}

.values-grid {
    display: grid;
    gap: 1rem;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(46, 46, 46, 0.1);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: rgba(255, 103, 31, 0.3);
    background: var(--gray);
}

.value-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--orange), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.value-card h4 {
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.value-card p {
    font-size: 0.875rem;
    color: rgba(46, 46, 46, 0.6);
}

/* ========================================
   E-COMMERCE SECTION
   ======================================== */
.ecommerce-section {
    position: relative;
    background: linear-gradient(135deg, var(--navy), var(--green), var(--navy));
    color: white;
    padding: 4rem 0;
    overflow: hidden;
    text-align: center;
}

.ecommerce-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 32px 32px;
}

.ecommerce-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, var(--orange), var(--gold));
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    position: relative;
    display: flex;
    width: 0.5rem;
    height: 0.5rem;
}

.pulse-ring {
    position: absolute;
    display: inline-flex;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: white;
    opacity: 0.75;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.pulse-core {
    position: relative;
    display: inline-flex;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: white;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.ecommerce-title {
    position: relative;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.ecommerce-description {
    position: relative;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.ecommerce-features {
    position: relative;
    display: grid;
    gap: 1rem;
    margin-bottom: 3rem;
}

.ecommerce-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    transition: background 0.3s ease;
}

.ecommerce-feature:hover {
    background: rgba(255, 255, 255, 0.15);
}

.ecommerce-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecommerce-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.ecommerce-feature span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.ecommerce-note {
    position: relative;
    display: inline-block;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
}

.ecommerce-note p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
    position: relative;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--navy), var(--green), var(--navy));
    border-radius: 1.5rem;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.final-cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.final-cta-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: white;
}

.final-cta-title {
    font-size: 2rem;
    line-height: 1.3;
}

.final-cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 40rem;
    margin: 0 auto;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

.final-cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.trust-indicator .icon {
    color: var(--orange);
}

.trust-indicator span {
    font-size: 0.875rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #2E2E2E;
    color: white;
}

.footer-content {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

.footer-company {
    grid-column: span 2;
}

.footer-company-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--orange), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-services {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-item .icon {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-column-title {
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--orange);
}

.footer-badge {
    background: linear-gradient(to right, var(--orange), var(--green));
    padding: 0.75rem 0;
}

.footer-badge p {
    text-align: center;
    color: white;
    font-size: 0.875rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablets (768px and up) */
@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 6rem 0;
    }
    
    .logo-text {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .machine-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-image img {
        height: 20rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .phases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .connecting-line {
        display: block;
        position: absolute;
        top: 6rem;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(to right, var(--orange), var(--green), var(--navy));
        opacity: 0.2;
    }
    
    .ecommerce-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .hero-cta {
        flex-direction: row;
    }
    
    .final-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .btn-cta {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        padding: 6rem 0;
    }
    
    .hero-image {
        height: 500px;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .machine-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
    
    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .ecommerce-features {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .ecommerce-title {
        font-size: 3rem;
    }
    
    .final-cta-title {
        font-size: 3rem;
    }
}

/* Large Desktop (1280px and up) */
@media (min-width: 1280px) {
    .section-title {
        font-size: 3.5rem;
    }
}
