:root {
    --background: #05090d;
    --background-soft: #081018;
    --surface: rgba(13, 23, 31, 0.78);
    --surface-strong: #0d1720;
    --surface-hover: #101e29;
    --border: rgba(151, 181, 202, 0.14);
    --border-hover: rgba(42, 231, 150, 0.38);
    --text: #f5f8fa;
    --text-soft: #9cabb6;
    --text-muted: #6f7f8a;
    --primary: #20e38d;
    --primary-strong: #14c87a;
    --primary-soft: rgba(32, 227, 141, 0.12);
    --blue: #41a6ff;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
    --radius-small: 12px;
    --radius-medium: 20px;
    --radius-large: 30px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% -10%, rgba(32, 227, 141, 0.06), transparent 28%),
        var(--background);
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    background: var(--primary);
    color: #00150c;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

svg {
    display: block;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 16px;
    transform: translateY(-150%);
    border-radius: 10px;
    background: var(--primary);
    color: #03120a;
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-background {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

.background-grid {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(108, 151, 179, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 151, 179, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.background-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
}

.background-orb-one {
    top: 8%;
    right: -260px;
    background: var(--primary);
}

.background-orb-two {
    top: 44%;
    left: -320px;
    background: var(--blue);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 112px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    background: rgba(5, 9, 13, 0.74);
    backdrop-filter: blur(22px);
    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

.site-header.is-scrolled {
    border-color: var(--border);
    background: rgba(5, 9, 13, 0.92);
}

.header-container {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-symbol {
    position: relative;
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(32, 227, 141, 0.32);
    border-radius: 13px;
    background:
        linear-gradient(145deg, rgba(32, 227, 141, 0.18), rgba(32, 227, 141, 0.02)),
        #091510;
    box-shadow:
        inset 0 0 20px rgba(32, 227, 141, 0.06),
        0 8px 30px rgba(32, 227, 141, 0.08);
}

.brand-symbol span {
    position: absolute;
    width: 7px;
    height: 23px;
    border-radius: 10px;
    background: linear-gradient(to bottom, #6fffc0, var(--primary));
    transform: rotate(32deg);
    box-shadow: 0 0 18px rgba(32, 227, 141, 0.55);
}

.brand-symbol span:first-child {
    margin-left: -10px;
}

.brand-symbol span:last-child {
    height: 18px;
    margin-left: 10px;
    opacity: 0.65;
}

.brand-copy {
    display: grid;
    line-height: 1.05;
}

.brand-copy strong {
    font-size: 18px;
    letter-spacing: -0.02em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    position: relative;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 650;
    transition: color 0.2s ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--text);
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.button svg {
    width: 18px;
    height: 18px;
}

.button-primary {
    background: linear-gradient(135deg, #31ef9d, var(--primary-strong));
    color: #00180d;
    box-shadow: 0 14px 34px rgba(32, 227, 141, 0.17);
}

.button-primary svg {
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(32, 227, 141, 0.25);
}

.button-secondary {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.025);
    color: var(--text);
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.button-small {
    min-height: 42px;
    padding: 0 17px;
    font-size: 13px;
}

.button-large {
    min-height: 54px;
    padding: 0 23px;
    font-size: 14px;
}

.hero {
    display: flex;
    min-height: calc(100vh - 82px);
    align-items: center;
    padding-top: 86px;
    padding-bottom: 96px;
}

.hero-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
    gap: 70px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.eyebrow {
    padding: 8px 12px;
    border: 1px solid rgba(32, 227, 141, 0.18);
    border-radius: 999px;
    background: rgba(32, 227, 141, 0.055);
    letter-spacing: 0.1em;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 14px var(--primary);
}

.hero h1 {
    max-width: 760px;
    margin: 28px 0 22px;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.058em;
}

.hero h1 span {
    display: block;
    background: linear-gradient(90deg, #66ffc0, var(--primary) 50%, #61c8ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    max-width: 670px;
    margin: 0;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    margin-top: 30px;
}

.hero-assurances span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8f9ca5;
    font-size: 12px;
    font-weight: 650;
}

.hero-assurances svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.visual-glow {
    position: absolute;
    inset: 13% 5% 4%;
    border-radius: 50%;
    background: rgba(32, 227, 141, 0.13);
    filter: blur(80px);
}

.infrastructure-card {
    position: relative;
    display: flex;
    min-height: 500px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 36px;
    background:
        linear-gradient(145deg, rgba(17, 31, 41, 0.88), rgba(6, 13, 18, 0.82)),
        var(--surface);
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.04),
        var(--shadow);
}

.infrastructure-card::before,
.infrastructure-card::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    border: 1px solid rgba(32, 227, 141, 0.08);
}

.infrastructure-card::before {
    width: 430px;
    height: 430px;
}

.infrastructure-card::after {
    width: 310px;
    height: 310px;
}

.terminal-window {
    position: absolute;
    z-index: 3;
    top: 80px;
    left: 38px;
    width: min(70%, 340px);
    overflow: hidden;
    border: 1px solid rgba(145, 177, 196, 0.18);
    border-radius: 17px;
    background: rgba(2, 7, 10, 0.91);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
    transform: rotate(-2deg);
}

.terminal-header {
    display: flex;
    height: 38px;
    align-items: center;
    gap: 7px;
    padding: 0 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.025);
}

.terminal-header > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5f57;
}

.terminal-header > span:nth-child(2) {
    background: #febc2e;
}

.terminal-header > span:nth-child(3) {
    background: #28c840;
}

.terminal-header small {
    margin-left: auto;
    color: #62727d;
    font-size: 9px;
}

.terminal-body {
    min-height: 232px;
    padding: 19px;
    color: #a5b3bb;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 11px;
    line-height: 1.6;
}

.terminal-body p {
    margin: 0 0 5px;
}

.terminal-body b,
.terminal-success {
    color: var(--primary);
}

.terminal-cursor {
    display: block;
    width: 7px;
    height: 14px;
    margin-top: 7px;
    background: var(--primary);
    animation: cursor-blink 1s steps(2, start) infinite;
}

.server-stack {
    position: absolute;
    z-index: 2;
    right: 38px;
    bottom: 82px;
    display: grid;
    width: 250px;
    gap: 10px;
    transform: perspective(800px) rotateY(-10deg) rotateX(3deg);
}

.server-unit {
    display: grid;
    min-height: 74px;
    align-items: center;
    padding: 0 18px;
    border: 1px solid rgba(108, 151, 179, 0.18);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(21, 36, 47, 0.95), rgba(9, 17, 23, 0.98));
    grid-template-columns: auto 1fr auto;
    gap: 17px;
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.04),
        0 15px 34px rgba(0, 0, 0, 0.3);
}

.server-lights {
    display: flex;
    gap: 5px;
}

.server-lights span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px rgba(32, 227, 141, 0.8);
}

.server-lights span:nth-child(2) {
    opacity: 0.7;
}

.server-lights span:nth-child(3) {
    opacity: 0.4;
}

.server-lines {
    display: grid;
    gap: 5px;
}

.server-lines i {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: rgba(124, 159, 180, 0.16);
}

.server-unit strong {
    color: #566a78;
    font-size: 9px;
    letter-spacing: 0.13em;
}

.floating-status {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    border: 1px solid rgba(32, 227, 141, 0.19);
    border-radius: 13px;
    background: rgba(7, 16, 21, 0.92);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(12px);
}

.floating-status span:last-child {
    display: grid;
}

.floating-status small {
    color: var(--text-muted);
    font-size: 9px;
}

.floating-status strong {
    font-size: 11px;
}

.floating-icon {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 9px;
    background: var(--primary-soft);
}

.floating-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.status-security {
    top: 52px;
    right: 24px;
}

.status-backup {
    bottom: 31px;
    left: 43px;
}

.technology-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.012);
}

.technology-list {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    overflow: hidden;
}

.technology-list span {
    color: #70808b;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.services-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(32, 227, 141, 0.035), transparent 35%);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 52px;
}

.section-heading > div {
    max-width: 710px;
}

.section-heading h2,
.difference-content h2,
.contact-copy h2 {
    margin: 14px 0 0;
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.section-heading > p {
    max-width: 390px;
    margin: 0 0 4px;
    color: var(--text-soft);
    font-size: 15px;
}

.section-heading.centered {
    display: grid;
    justify-content: center;
    text-align: center;
}

.section-heading.centered > div,
.section-heading.centered > p {
    max-width: 720px;
}

.section-heading.centered > p {
    margin-inline: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background:
        linear-gradient(145deg, rgba(15, 27, 36, 0.82), rgba(8, 15, 21, 0.82));
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card::after {
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 190px;
    height: 190px;
    content: "";
    border-radius: 50%;
    background: rgba(32, 227, 141, 0.08);
    filter: blur(50px);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.service-card:hover {
    z-index: 2;
    border-color: var(--border-hover);
    background:
        linear-gradient(145deg, rgba(16, 33, 41, 0.96), rgba(8, 18, 23, 0.92));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
    transform: translateY(-7px);
}

.service-card:hover::after {
    opacity: 1;
}

.service-number {
    position: absolute;
    top: 24px;
    right: 26px;
    color: rgba(145, 177, 196, 0.24);
    font-size: 12px;
    font-weight: 800;
}

.service-icon {
    display: grid;
    width: 50px;
    height: 50px;
    margin-bottom: 58px;
    place-items: center;
    border: 1px solid rgba(32, 227, 141, 0.18);
    border-radius: 14px;
    background: var(--primary-soft);
}

.service-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    letter-spacing: -0.025em;
}

.service-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
}

.service-tags {
    display: block;
    margin-top: 24px;
    color: #5e717d;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.difference-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(9, 17, 23, 0.8), rgba(5, 9, 13, 0.8));
}

.difference-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 90px;
}

.difference-content > p {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--text-soft);
    font-size: 16px;
}

.difference-list {
    display: grid;
    margin-top: 38px;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.difference-list > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.difference-list > div > span {
    display: grid;
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    margin-top: 2px;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-soft);
}

.difference-list svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.difference-list p {
    display: grid;
    margin: 0;
    color: var(--text-muted);
    font-size: 12px;
}

.difference-list strong {
    margin-bottom: 3px;
    color: var(--text);
    font-size: 14px;
}

.difference-panel {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(16, 29, 38, 0.96), rgba(7, 14, 19, 0.96));
    box-shadow: var(--shadow);
}

.panel-header {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    border-bottom: 1px solid var(--border);
}

.panel-header span {
    font-size: 12px;
    font-weight: 750;
}

.panel-header small {
    color: var(--text-muted);
    font-family: monospace;
    font-size: 10px;
}

.panel-status {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 24px 22px;
}

.panel-status-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 15px;
    background: var(--primary-soft);
}

.panel-status-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.panel-status > div {
    display: grid;
}

.panel-status small {
    color: var(--text-muted);
}

.panel-status strong {
    font-size: 20px;
}

.panel-metrics {
    display: grid;
    padding: 0 24px 24px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.panel-metrics div {
    display: grid;
    padding: 14px;
    border: 1px solid rgba(151, 181, 202, 0.09);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.018);
}

.panel-metrics span {
    color: var(--text-muted);
    font-size: 10px;
    text-transform: uppercase;
}

.panel-metrics strong {
    margin-top: 3px;
    color: #b9c4ca;
    font-size: 12px;
}

.panel-log {
    padding: 18px 24px 22px;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.16);
    font-family: monospace;
    font-size: 10px;
}

.panel-log p {
    margin: 6px 0;
    color: #84939d;
}

.panel-log span {
    color: var(--primary);
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-grid::before {
    position: absolute;
    top: 42px;
    right: 10%;
    left: 10%;
    height: 1px;
    content: "";
    background: linear-gradient(
        90deg,
        transparent,
        rgba(32, 227, 141, 0.25),
        transparent
    );
}

.process-card {
    position: relative;
    z-index: 1;
    min-height: 230px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(11, 20, 27, 0.84);
}

.process-card > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(32, 227, 141, 0.18);
    border-radius: 12px;
    background: #09140f;
    color: var(--primary);
    font-size: 11px;
    font-weight: 850;
}

.process-card h3 {
    margin: 30px 0 10px;
    font-size: 20px;
}

.process-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 13px;
}

.contact-section {
    padding-top: 40px;
}

.contact-card {
    position: relative;
    display: flex;
    min-height: 330px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    overflow: hidden;
    padding: 62px;
    border: 1px solid rgba(32, 227, 141, 0.22);
    border-radius: var(--radius-large);
    background:
        linear-gradient(135deg, rgba(17, 37, 43, 0.97), rgba(7, 15, 20, 0.96));
    box-shadow: var(--shadow);
}

.contact-card::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.17;
    background-image:
        linear-gradient(rgba(32, 227, 141, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(32, 227, 141, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to right, black, transparent);
}

.contact-glow {
    position: absolute;
    top: -170px;
    left: -110px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(32, 227, 141, 0.13);
    filter: blur(80px);
}

.contact-copy {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.contact-copy h2 {
    font-size: clamp(38px, 5vw, 58px);
}

.contact-copy p {
    max-width: 620px;
    margin: 20px 0 0;
    color: var(--text-soft);
    font-size: 16px;
}

.contact-card .button {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
}

.site-footer {
    padding: 30px 0 38px;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.footer-brand .brand-symbol {
    width: 36px;
    height: 36px;
}

.footer-container p,
.footer-container > small {
    color: var(--text-muted);
    font-size: 11px;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    display: none;
    width: 55px;
    height: 55px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #35ef9e, #16c979);
    color: #00190d;
    box-shadow: 0 15px 36px rgba(32, 227, 141, 0.25);
}

.floating-whatsapp svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@keyframes cursor-blink {
    50% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1050px) {
    .desktop-nav {
        display: none;
    }

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

    .hero-content {
        max-width: 850px;
    }

    .hero-visual {
        width: min(100%, 720px);
        min-height: 540px;
        margin-inline: auto;
    }

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

    .difference-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .difference-panel {
        width: min(100%, 650px);
    }

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

    .process-grid::before {
        display: none;
    }

    .technology-list {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .technology-list::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 82px 0;
    }

    .header-container {
        min-height: 72px;
    }

    .header-container > .button {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
    }

    .hero-grid {
        gap: 52px;
    }

    .hero h1 {
        margin-top: 22px;
        font-size: clamp(42px, 13vw, 62px);
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-assurances {
        display: grid;
        gap: 12px;
    }

    .hero-visual {
        min-height: 440px;
    }

    .infrastructure-card {
        min-height: 420px;
        border-radius: 25px;
    }

    .terminal-window {
        top: 47px;
        left: 18px;
        width: 82%;
    }

    .terminal-body {
        min-height: 205px;
        font-size: 9px;
    }

    .server-stack {
        right: 19px;
        bottom: 43px;
        width: 69%;
    }

    .server-unit {
        min-height: 57px;
    }

    .floating-status {
        transform: scale(0.88);
    }

    .status-security {
        top: 20px;
        right: 8px;
    }

    .status-backup {
        bottom: 8px;
        left: 6px;
    }

    .section-heading {
        display: grid;
        gap: 18px;
        margin-bottom: 36px;
    }

    .section-heading h2,
    .difference-content h2,
    .contact-copy h2 {
        font-size: 38px;
    }

    .section-heading > p {
        max-width: 600px;
    }

    .services-grid,
    .process-grid,
    .difference-list {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .service-icon {
        margin-bottom: 42px;
    }

    .contact-section {
        padding-top: 10px;
    }

    .contact-card {
        display: grid;
        min-height: 400px;
        padding: 40px 25px;
    }

    .contact-card .button {
        width: 100%;
    }

    .footer-container {
        display: grid;
    }

    .floating-whatsapp {
        display: grid;
    }
}

@media (max-width: 430px) {
    .brand-copy strong {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 41px;
    }

    .eyebrow {
        font-size: 9px;
    }

    .terminal-window {
        width: 90%;
    }

    .server-stack {
        width: 76%;
    }

    .section-heading h2,
    .difference-content h2,
    .contact-copy h2 {
        font-size: 34px;
    }
}
