:root {
    --ink-900: #0a0a0a;
    --ink-800: #141414;
    --ink-700: #1f1f1f;
    --red-500: #e11d2e;
    --red-600: #b31321;
    --accent-500: #e11d2e;
    --white: #ffffff;
    --text-main: #171717;
    --text-soft: #1f1f1f;
    --border-soft: rgba(23, 23, 23, 0.14);
    --shadow-lg: 0 28px 60px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 16px 30px rgba(0, 0, 0, 0.2);
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --container: 1180px;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Public Sans', sans-serif;
    color: var(--white);
    background: #1d1d1d;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(var(--container), 100% - 2.5rem);
    margin-inline: auto;
}

.section-space {
    padding: 88px 0;
}

.eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    color: var(--red-600);
    margin-bottom: 12px;
}

p {
    font-size: 0.98rem;
}

h1,
h2,
h3 {
    line-height: 1.15;
}

h1,
h2,
h3 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
}

.section-header {
    max-width: 660px;
    margin-bottom: 36px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    color: var(--white);
    letter-spacing: 0.01em;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
}

.nav-container {
    width: min(1280px, 100% - 2rem);
    margin-inline: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 4px 0;
}

.logo {
    margin-left: -10px;
}

.logo-img {
    width: 86px;
    height: auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
    font-size: 0.92rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--red-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--red-500);
    color: #ffffff;
    padding: 10px 18px;
    font-size: 0.86rem;
}

.btn-primary {
    padding: 13px 24px;
    background: var(--red-500);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(225, 29, 46, 0.28);
}

.btn-primary:hover,
.btn-nav:hover {
    background: var(--red-600);
}

.btn-secondary {
    padding: 13px 24px;
    background: transparent;
    border: 2px solid var(--ink-900);
    color: var(--ink-900);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: white;
}

.hero {
    padding: 96px 0 60px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 16px;
    color: var(--white);
}

.hero-subtext {
    font-size: 1.06rem;
    max-width: 60ch;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 24px;
}

.hero .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 14px;
}

.hero-metrics div {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 12px;
}

.hero-metrics strong {
    display: block;
    font-size: 1.2rem;
    color: var(--ink-900);
}

.hero-metrics span {
    color: var(--text-soft);
    font-size: 0.84rem;
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    left: -28px;
    bottom: 24px;
    background: rgba(10, 10, 10, 0.92);
    color: var(--white);
    padding: 16px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.floating-card p {
    font-size: 0.8rem;
    opacity: 0.74;
}

.floating-card strong {
    display: block;
    font-size: 1.3rem;
    margin: 4px 0;
}

.floating-card span {
    font-size: 0.74rem;
    color: #ff8f98;
}

.trust-strip {
    padding: 22px 0;
}

.trust-grid {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    align-items: center;
    padding: 18px;
    color: rgba(255, 255, 255, 0.86);
}

.trust-grid p {
    font-weight: 700;
    color: var(--white);
}

.trust-grid span {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.visual-showcase {
    padding-top: 20px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        'feature compact'
        'panel panel';
    gap: 16px;
    align-items: start;
}

.showcase-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #101010;
    border: 1px solid rgba(225, 29, 46, 0.34);
    box-shadow: var(--shadow-md);
}

.showcase-feature {
    grid-area: feature;
    display: block;
}

.showcase-compact {
    grid-area: compact;
}

.showcase-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.showcase-feature img {
    height: 280px;
}

.showcase-copy {
    padding: 20px;
    flex: 1;
}

.showcase-eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--red-600);
    margin-bottom: 8px;
}

.showcase-copy h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--white);
}

.showcase-copy p {
    color: rgba(255, 255, 255, 0.82);
}

.showcase-panel {
    grid-area: panel;
    background: #101010;
    border: 1px solid rgba(225, 29, 46, 0.34);
    border-radius: var(--radius-xl);
    padding: 20px;
    display: grid;
    gap: 14px;
}

.showcase-panel h3 {
    color: var(--white);
    font-size: 1.35rem;
}

.showcase-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.showcase-metrics div {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 12px;
}

.showcase-metrics strong {
    display: block;
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.showcase-metrics span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-item {
    background: rgba(235, 235, 235, 0.96);
    border: 1px solid rgba(23, 23, 23, 0.12);
    border-left: 3px solid var(--red-500);
    border-radius: var(--radius-lg);
    padding: 22px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-item:hover {
    transform: translateY(-6px);
    border-color: rgba(225, 29, 46, 0.52);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
}

.service-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--ink-900);
}

.service-item p {
    color: var(--text-soft);
    font-size: 0.94rem;
    line-height: 1.55;
}

.products {
    background: #232323;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}

.product-item {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.product-featured {
    background: #101010;
    color: var(--white);
    border: none;
    transform: translateY(-6px);
}

.product-item:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(225, 29, 46, 0.45);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(225, 29, 46, 0.18) inset;
}

.product-featured:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.32), 0 12px 28px rgba(225, 29, 46, 0.2);
}

.product-item .btn-primary {
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.product-item:hover .btn-primary {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(225, 29, 46, 0.32);
}

.product-tag {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--red-500);
}

.product-featured .product-tag {
    color: #ff8f98;
}

.product-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--ink-900);
}

.product-featured h3 {
    color: var(--white);
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--ink-900);
}

.product-featured .product-price {
    color: var(--white);
}

.product-price span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-soft);
}

.product-featured .product-price span {
    color: rgba(255, 255, 255, 0.72);
}

.product-features {
    list-style: none;
    margin: 8px 0 24px;
    display: grid;
    gap: 8px;
    flex: 1;
}

.product-features li {
    position: relative;
    padding-left: 20px;
    color: var(--text-soft);
}

.product-featured .product-features li {
    color: rgba(255, 255, 255, 0.82);
}

.product-features li::before {
    content: '•';
    position: absolute;
    left: 5px;
    top: 0;
    color: var(--accent-500);
}

.security-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 30px;
    align-items: stretch;
}

.security-image {
    position: relative;
    height: 100%;
}

.security-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(225, 29, 46, 0.35);
}

.security-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(16, 16, 16, 0.92);
    border: 1px solid rgba(225, 29, 46, 0.45);
    color: var(--white);
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
}

.security-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 14px;
    color: var(--white);
}

.security-content {
    display: flex;
    flex-direction: column;
}

.security-lead {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 18px;
    max-width: 58ch;
}

.security-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 12px;
}

.security-list li {
    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 3px solid var(--red-500);
    border-radius: 14px;
    padding: 14px;
    color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.security-list li:hover {
    transform: translateY(-3px);
    border-color: rgba(225, 29, 46, 0.55);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.security-list li strong {
    display: block;
    font-size: 1.06rem;
    margin-bottom: 6px;
}

.security-list li span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.45;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.insight-card {
    background: #101010;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.insight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(225, 29, 46, 0.5);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
}

.insight-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insight-card:hover img {
    transform: scale(1.05);
}

.insight-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.insight-date {
    color: #ff8f98;
    font-weight: 800;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.insight-body h3 {
    font-size: 1.35rem;
    margin-bottom: 4px;
    color: var(--white);
    line-height: 1.25;
    min-height: 3.3em;
}

.read-more {
    font-weight: 700;
    color: #ff8f98;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s ease, gap 0.25s ease;
}

.read-more::after {
    content: '->';
    font-size: 0.85rem;
}

.read-more:hover {
    color: var(--white);
    gap: 12px;
}

.contact-wrap {
    background: #101010;
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: clamp(24px, 4vw, 46px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.contact-wrap .eyebrow {
    color: #ff8f98;
}

.contact-wrap h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    margin-bottom: 10px;
}

.contact-wrap p {
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.82);
}

.contact-text {
    max-width: 560px;
}

.contact-photo {
    width: min(300px, 100%);
}

.contact-photo img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 250px;
}

.contact-actions .btn-secondary {
    border-color: rgba(255, 255, 255, 0.52);
    color: white;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
}

.about-preview-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 14px;
}

.about-preview-content p {
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 16px;
}

.about-preview-list {
    list-style: none;
    margin-bottom: 20px;
}

.about-preview-list li {
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
    color: rgba(255, 255, 255, 0.86);
}

.about-preview-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--red-500);
}

.about-preview-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.page-hero {
    padding: 94px 0 36px;
}

.page-hero h1 {
    font-size: clamp(2.35rem, 4.5vw, 4rem);
    margin-bottom: 12px;
    max-width: 16ch;
}

.page-subtitle {
    max-width: 70ch;
    color: rgba(255, 255, 255, 0.82);
}

.page-section {
    padding: 42px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 22px;
    color: var(--ink-900);
}

.info-card h3 {
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-soft);
    margin-bottom: 8px;
}

.mission-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 18px;
}

.mission-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red-500);
}

.mission-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 29, 46, 0.52);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.mission-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: #ff8f98;
}

.mission-card h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
    color: var(--white);
}

.mission-card p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
}

.split-panel {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: center;
}

.split-panel-media img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.split-panel-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.timeline-list {
    list-style: none;
    margin-bottom: 18px;
}

.timeline-list li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.84);
}

.timeline-list strong {
    color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.team-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    color: var(--ink-900);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top;
}

.team-card h3,
.team-card p {
    padding: 0 16px;
}

.team-card h3 {
    margin: 14px 0 4px;
}

.team-card p {
    margin-bottom: 14px;
    color: var(--text-soft);
}

.footer {
    padding: 54px 0 24px;
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 80px;
}

.footer h4,
.footer-bottom p {
    letter-spacing: 0.01em;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 20px;
}

.footer-logo {
    width: 110px;
    margin-bottom: 12px;
}

.footer h4 {
    color: white;
    margin-bottom: 10px;
}

.footer a,
.footer p {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
}

.footer a:hover {
    color: #ff8f98;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 16px;
    padding-top: 14px;
    text-align: center;
    font-size: 0.85rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.reveal-show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero-layout,
    .security-grid,
    .about-preview-grid,
    .split-panel {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        grid-template-areas:
            'feature'
            'compact'
            'panel';
        grid-template-columns: 1fr;
    }

    .showcase-feature img {
        height: 320px;
    }

    .showcase-metrics {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .hero-visual img {
        height: 420px;
    }

    .security-list {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .floating-card {
        left: 16px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .nav-container {
        grid-template-columns: auto auto auto;
    }

    .hamburger {
        display: flex;
        justify-self: end;
    }

    .btn-nav {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 54px;
        right: 14px;
        left: 14px;
        background: #111111;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--shadow-md);
        padding: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: var(--transition);
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        padding: 9px 10px;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .contact-actions {
        width: 100%;
    }

    .contact-photo {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 580px) {
    .container {
        width: min(var(--container), 100% - 1.4rem);
    }

    .logo {
        margin-left: -6px;
    }

    .logo-img {
        width: 96px;
    }

    .hero-visual img {
        height: 340px;
    }

    .floating-card {
        position: static;
        margin-top: 12px;
    }

    .security-badge {
        position: static;
        margin-top: 12px;
        width: fit-content;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
