/* 
    THEME: ROBO-PLAYGROUND
    AUTHOR: Alibata Marketing Solutions Design Team
    VERSION: 1.0.0
*/

:root {
    /* Color Palette */
    --primary: #00d4ff;
    /* Electric Cyan */
    --primary-dark: #0099cc;
    --secondary: #ffae00;
    /* Robot Yellow/Orange */
    --secondary-dark: #cc8b00;
    --accent: #ff00ff;
    /* Neon Magenta */
    --bg-dark: #121225;
    /* Space Blue */
    --bg-card: #1a1a2e;
    /* Slightly lighter */
    --text-main: #e6e6fa;
    --text-muted: #a0a0b0;
    --white: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #00d4ff 0%, #0077cc 100%);
    --grad-secondary: linear-gradient(135deg, #ffae00 0%, #ff6600 100%);
    --grad-dark: linear-gradient(180deg, #121225 0%, #0d0d1a 100%);

    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 30px rgba(0, 0, 0, 0.5);
    --glow: 0 0 15px rgba(0, 212, 255, 0.5);
    --glass: rgba(26, 26, 46, 0.85);

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 20px;
}

/* RESET & BASE STYLES */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Fredoka', sans-serif;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary);
}

.text-highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

/* HEADER STYLES (Strict Consistency) */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: transform 0.3s ease, background 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}


.logo-img {
    height: 50px;
    width: auto;
    filter: invert(1);
}

.brand-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.desktop-nav .nav-links {
    display: flex;
    gap: 30px;
}

.nav-btn {
    position: relative;
    font-weight: 600;
    color: var(--text-main);
    padding: 5px 0;
    font-size: 1.1rem;
}

.nav-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-btn:hover {
    color: var(--white);
}

.nav-btn:hover::after {
    width: 100%;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--grad-secondary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
    overflow: hidden;
    position: relative;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 174, 0, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.header-cta {
    display: flex;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1002;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease-in-out;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-links a {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    color: var(--white);
}

.mobile-links a:hover {
    color: var(--primary);
}

/* Mobile Toggle Animation */
.mobile-toggle.active .top {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active .mid {
    opacity: 0;
}

.mobile-toggle.active .bot {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* HERO SECTION */
.hero-section {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, #1a1a3a 0%, var(--bg-dark) 60%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.badge-pill .dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: blink 2s infinite;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.robot-emoji {
    display: inline-block;
    animation: wave 2.5s infinite;
    transform-origin: 70% 70%;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-button.primary {
    background: var(--grad-primary);
    padding: 16px 32px;
    font-size: 1.1rem;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--border-color);
}

.cta-button.secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.trust-indicators {
    display: flex;
    gap: 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.trust-indicators i {
    color: var(--secondary);
    margin-right: 8px;
}

/* ROBOT MASCOT CSS */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.robot-container {
    width: 250px;
    height: 350px;
    position: relative;
    z-index: 2;
}

.floating-anim {
    animation: float 6s ease-in-out infinite;
}

.robot-head {
    width: 160px;
    height: 120px;
    background: var(--white);
    border-radius: 40px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.face-screen {
    width: 120px;
    height: 70px;
    background: var(--bg-dark);
    border-radius: 25px;
    position: absolute;
    top: 25px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.eye-group {
    display: flex;
    gap: 20px;
    margin-bottom: 5px;
}

.eye {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    position: relative;
    animation: blink-eyes 4s infinite;
}

/* Pupil for JS tracking */
.eye::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    top: 5px;
    left: 5px;
}

.mouth {
    width: 30px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.robot-antenna {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.robot-antenna .stick {
    width: 6px;
    height: 40px;
    background: #a0a0b0;
    margin: 0 auto;
}

.robot-antenna .ball {
    width: 16px;
    height: 16px;
    background: var(--secondary);
    border-radius: 50%;
    position: absolute;
    top: -8px;
    left: -5px;
    animation: pulse-light 2s infinite;
}

.ear {
    width: 20px;
    height: 40px;
    background: #ccc;
    position: absolute;
    top: 40px;
}

.ear.left {
    left: -10px;
    border-radius: 10px 0 0 10px;
}

.ear.right {
    right: -10px;
    border-radius: 0 10px 10px 0;
}

.robot-body {
    width: 140px;
    height: 160px;
    background: var(--white);
    border-radius: 30px 30px 50px 50px;
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.1);
}

.chest-panel {
    width: 90px;
    height: 100px;
    background: #f0f0f5;
    border-radius: 15px;
    position: absolute;
    top: 20px;
    left: 25px;
    padding: 10px;
}

.meter {
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    overflow: hidden;
}

.level {
    width: 70%;
    height: 100%;
    background: var(--grad-secondary);
    animation: load-meter 3s infinite alternate;
}

.buttons {
    display: flex;
    justify-content: space-between;
}

.btn {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.btn.red {
    background: #ff4444;
}

.btn.green {
    background: #00cc00;
}

.btn.blue {
    background: #4444ff;
}

.arm {
    position: absolute;
    top: 30px;
}

.arm.left {
    left: -30px;
}

.arm.right {
    right: -30px;
    transform: scaleX(-1);
}

.shoulder {
    width: 40px;
    height: 40px;
    background: #ccc;
    border-radius: 50%;
}

.limb {
    width: 20px;
    height: 80px;
    background: var(--white);
    border-radius: 10px;
    margin: -10px 0 0 10px;
}

.hand {
    width: 30px;
    height: 30px;
    border: 5px solid #ccc;
    border-radius: 50%;
    border-right-color: transparent;
    transform: rotate(-45deg);
    margin: -5px 0 0 5px;
}

.wave-anim {
    transform-origin: top center;
    animation: robot-wave 3s infinite ease-in-out;
}

.robot-shadow {
    width: 100px;
    height: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    animation: shadow-scale 6s infinite ease-in-out;
    filter: blur(5px);
}

.floating-gear {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
    font-size: 4rem;
    z-index: 1;
}

.gear-1 {
    top: 10%;
    left: 0;
    animation: spin 10s linear infinite;
}

.gear-2 {
    bottom: 20%;
    right: 10%;
    animation: spin-rev 15s linear infinite;
    font-size: 6rem;
}

.floating-code {
    position: absolute;
    font-family: monospace;
    color: var(--primary);
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.code-1 {
    top: 20%;
    right: 20%;
    animation: float-delayed 4s infinite;
}

.code-2 {
    bottom: 30%;
    left: 10%;
    animation: float 5s infinite;
}

.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-separator svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-separator .shape-fill {
    fill: var(--bg-dark);
    /* Same as body bg but lighter section below will match */
    opacity: 0.5;
}

/* SERVICES SECTION */
.services-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.section-header {
    margin-bottom: 60px;
}

.tagline {
    display: block;
    font-family: 'Fredoka', sans-serif;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 3rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--white);
}

.color-1 {
    background: linear-gradient(135deg, #00d4ff, #0077cc);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.color-2 {
    background: linear-gradient(135deg, #ffae00, #ff6600);
    box-shadow: 0 5px 15px rgba(255, 174, 0, 0.3);
}

.color-3 {
    background: linear-gradient(135deg, #ff00ff, #aa00aa);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.color-4 {
    background: linear-gradient(135deg, #00ffaa, #00aa77);
    box-shadow: 0 5px 15px rgba(0, 255, 170, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-main);
    font-size: 0.9rem;
}

.service-features i {
    color: var(--primary);
    font-size: 0.8rem;
}

.card-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.text-link {
    font-weight: 700;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Fredoka', sans-serif;
}

.text-link:hover {
    color: var(--secondary);
    gap: 12px;
}

/* CALCULATOR SECTION */
.calculator-section {
    padding: 100px 0;
    background: #0d0d1a;
    position: relative;
}

.calc-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.calc-display {
    flex: 1;
    background: #222233;
    border-radius: 30px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    border: 4px solid #333344;
}

.screen-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #11111a;
    border-radius: 20px 20px 0 0;
    margin-bottom: 5px;
    color: #555;
    font-family: monospace;
    font-size: 0.8rem;
}

.screen-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.screen-body {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 0 0 20px 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 600;
}

input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #333;
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary);
}

.range-value {
    color: var(--white);
    font-weight: 700;
    text-align: right;
    margin-top: 5px;
}

.input-number {
    width: 100%;
    padding: 12px;
    background: #111;
    border: 1px solid #444;
    border-radius: 10px;
    color: var(--white);
    font-family: 'Nunito', sans-serif;
}

.calc-result {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.result-box {
    background: #111;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
}

.highlight-box {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary);
}

.result-box h3 {
    font-size: 1.8rem;
    margin: 5px 0 0;
}

.btn-pixel {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--secondary);
    color: #000;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 10px;
    border-bottom: 5px solid var(--secondary-dark);
    transition: all 0.1s;
}

.btn-pixel:active {
    transform: translateY(4px);
    border-bottom-width: 0;
}

.calc-decoration {
    flex: 1;
    display: flex;
    justify-content: center;
}

.robot-arm-holding {
    width: 200px;
    height: 400px;
    position: relative;
}

.arm-segment {
    width: 20px;
    height: 200px;
    background: #ccc;
    margin: 0 auto;
    border-radius: 10px;
    transform: rotate(15deg);
}

.claw-hand {
    width: 60px;
    height: 60px;
    border: 8px solid #ccc;
    border-top: none;
    border-radius: 0 0 30px 30px;
    margin: -10px auto 0;
    transform: rotate(15deg);
}

/* PROCESS SECTION */
.process-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.conveyor-belt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    position: relative;
}

/* Belt Line */
.conveyor-belt::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(90deg, #333, #333 10px, #555 10px, #555 20px);
    z-index: 0;
    animation: belt-move 20s linear infinite;
}

.process-step {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 20px;
    width: 220px;
    text-align: center;
    z-index: 2;
    border: 2px solid var(--border-color);
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--secondary);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-dark);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--primary);
    border: 2px solid var(--primary);
    position: relative;
}

.step-num {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary);
    color: #000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.connector-arrow {
    font-size: 2rem;
    color: var(--text-muted);
    z-index: 2;
}

.bg-gears {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.03;
}

.gear-lg {
    font-size: 40rem;
    position: absolute;
    top: -100px;
    left: -100px;
}

.gear-md {
    font-size: 20rem;
    position: absolute;
    bottom: 0;
    right: 0;
}

/* INDUSTRIES SECTION */
.industries-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1a1a3a 100%);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid transparent;
    cursor: default;
    transition: all 0.3s;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: scale(1.05);
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

/* TESTIMONIALS */
.testimonials-section {
    padding: 100px 0;
}

.testimonial-scroller {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 30px;
    border-bottom: 5px solid var(--primary);
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: #333;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

/* Simple CSS Robot Avatars */
.robot-avatar-1::before {
    content: '🤖';
    font-size: 30px;
    position: absolute;
    top: 5px;
    left: 8px;
}

.robot-avatar-1 {
    background: #ffaaaa;
}

.robot-avatar-2::before {
    content: '👾';
    font-size: 30px;
    position: absolute;
    top: 5px;
    left: 8px;
}

.robot-avatar-2 {
    background: #aaffaa;
}

.robot-avatar-3::before {
    content: '👽';
    font-size: 30px;
    position: absolute;
    top: 5px;
    left: 8px;
}

.robot-avatar-3 {
    background: #aaaaff;
}

/* CTA SECTION */
.cta-section {
    padding: 80px 0;
    margin-bottom: 50px;
}

.cta-box {
    background: var(--grad-primary);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
}

.cta-content {
    z-index: 2;
    max-width: 600px;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button.white-btn {
    background: var(--white);
    color: var(--primary-dark);
}

.cta-button.white-btn:hover {
    color: var(--secondary);
}

.cta-img {
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
    animation: float 4s ease-in-out infinite;
}

/* FOOTER (Strict) */
.main-footer {
    background: #0a0a12;
    position: relative;
    padding-top: 100px;
    margin-top: 50px;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: translateY(-90%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-img-sm {
    height: 50px;
    width: auto;
    filter: invert(1);
}

.brand-col p {
    color: var(--text-muted);
    margin: 20px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    margin-bottom: 25px;
    color: var(--secondary);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul a {
    color: var(--text-muted);
}

.links-col ul a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.contact-list i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    padding: 30px 0;
    font-size: 0.9rem;
    color: #666;
}

.legal-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-links .links {
    display: flex;
    gap: 20px;
}

.robot-up-btn {
    position: absolute;
    right: 30px;
    top: -30px;
    background: var(--secondary);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 0 20px rgba(255, 174, 0, 0.4);
    transition: all 0.3s;
    overflow: hidden;
}

.robot-up-btn .head {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    top: 60px;
    transition: top 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.robot-up-btn .eyes {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    box-shadow: 15px 0 0 #000;
    margin-left: -8px;
}

.robot-up-btn:hover {
    transform: translateY(-5px);
}

.robot-up-btn:hover i {
    opacity: 0;
}

.robot-up-btn:hover .head {
    top: 0;
}

/* LEGAL PAGES SPECIFIC */
.page-header {
    padding: 180px 0 80px;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a3a 0%, var(--bg-dark) 70%);
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.legal-content {
    padding: 50px 0 100px;
}

.legal-article {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
}

.legal-article h2 {
    color: var(--primary);
    margin-top: 30px;
    font-size: 1.8rem;
}

.legal-article p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* CONTACT PAGE SPECIFIC */
.contact-section-full {
    padding-bottom: 100px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.contact-info-panel {
    background: var(--grad-dark);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.robot-helper {
    margin-top: 50px;
    text-align: center;
}

.speech-bubble {
    background: var(--white);
    color: var(--bg-dark);
    padding: 10px 20px;
    border-radius: 20px 20px 20px 0;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 10px;
    animation: float 3s infinite;
}

.robot-head-anim {
    width: 80px;
    height: 60px;
    background: var(--secondary);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
}

.eyes-anim {
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 20px;
    box-shadow: 30px 0 0 var(--white);
    animation: blink-eyes 3s infinite;
}

.contact-form-panel {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 30px;
    border-top: 5px solid var(--secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.robo-form input,
.robo-form select,
.robo-form textarea {
    width: 100%;
    padding: 15px;
    background: #0d0d1a;
    border: 2px solid #2a2a3a;
    border-radius: 12px;
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s;
}

.robo-form input:focus,
.robo-form select:focus,
.robo-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.1);
}

/* ANIMATION KEYFRAMES */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes float-delayed {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes blink-eyes {

    0%,
    45%,
    55%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.1);
    }
}

@keyframes wave {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(15deg);
    }

    75% {
        transform: rotate(-15deg);
    }
}

@keyframes load-meter {
    0% {
        width: 30%;
    }

    100% {
        width: 90%;
    }
}

@keyframes robot-wave {

    0%,
    100% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(20deg);
    }
}

@keyframes shadow-scale {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0.1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-rev {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes belt-move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 500px 0;
    }
}

@keyframes pulse-light {
    0% {
        box-shadow: 0 0 5px var(--secondary);
    }

    50% {
        box-shadow: 0 0 20px var(--secondary);
    }

    100% {
        box-shadow: 0 0 5px var(--secondary);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .trust-indicators {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .conveyor-belt {
        flex-direction: column;
        gap: 40px;
    }

    .conveyor-belt::before {
        width: 4px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        background: repeating-linear-gradient(180deg, #333, #333 10px, #555 10px, #555 20px);
        animation: belt-move-vert 20s linear infinite;
    }

    .connector-arrow {
        transform: rotate(90deg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links,
    .contact-list li {
        justify-content: center;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-img {
        margin-top: 30px;
        font-size: 6rem;
    }

    .calc-wrapper {
        flex-direction: column;
    }

    .robot-arm-holding {
        display: none;
    }
}

@keyframes belt-move-vert {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 500px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .legal-article {
        padding: 25px;
    }

    .header-container {
        padding: 0 15px;
    }
}