@font-face {
    font-family: 'RizhortNHL';
    src: url('../fonts/nhl-ducks.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root{
    --rz-orange: #FF4500;
    --rz-black: #000000;
    --rz-steel: #111827;
    --rz-steel-2: #0F172A;
    --rz-dark-soft: #10141f;
    --rz-white: #FFFFFF;
    --rz-text-soft: rgba(255,255,255,0.74);
    --rz-border: rgba(255,255,255,0.08);
    --rz-glow: 0 0 32px rgba(255, 69, 0, 0.18);
    --rz-radius: 22px;
    --rz-max: 1240px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body.rizhort-public-home,
body.rizhort-public-page{
    margin:0;
    background:
        radial-gradient(circle at top right, rgba(255,69,0,.08), transparent 25%),
        linear-gradient(180deg, #050608 0%, #0a0d14 100%);
    color:var(--rz-white);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x:hidden;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.rz-site-shell{
    position:relative;
    min-height:100vh;
    isolation:isolate;
}

.rz-tech-bg{
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:-1;
    overflow:hidden;
}

.rz-grid{
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size:44px 44px;
    opacity:.9;
}

.rz-orb{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    opacity:.34;
}

.rz-orb-1{
    width:340px;
    height:340px;
    background:rgba(255,69,0,.18);
    top:70px;
    right:-60px;
}

.rz-orb-2{
    width:260px;
    height:260px;
    background:rgba(255,255,255,.06);
    bottom:90px;
    left:-70px;
}

.rz-line{
    position:absolute;
    background:linear-gradient(90deg, transparent, rgba(255,69,0,.4), transparent);
    height:1px;
}

.rz-line-1{
    width:55%;
    top:160px;
    left:0;
}

.rz-line-2{
    width:38%;
    bottom:180px;
    right:0;
}

.rz-header{
    position:sticky;
    top:0;
    z-index:50;
    backdrop-filter:blur(14px);
    background:rgba(5, 7, 10, 0.72);
    border-bottom:1px solid var(--rz-border);
    padding-left:24px;
    padding-right:24px;
}

.rz-header-inner{
    max-width:var(--rz-max);
    margin:0 auto;
    padding:18px 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.rz-brand{
    display:flex;
    align-items:center;
    flex-shrink:0;
    margin-left:0;
}

.rz-brand-logo{
    display:block;
    height:auto;
    max-height:64px;
    width:auto;
    max-width:260px;
}

.rz-brand-fallback{
    font-family:'RizhortNHL', sans-serif;
    color:var(--rz-orange);
    font-size:30px;
    letter-spacing:1px;
}

.rz-nav{
    display:flex;
    align-items:center;
    gap:26px;
}

.rz-nav a{
    color:rgba(255,255,255,0.82);
    font-size:14px;
    font-weight:500;
    transition:.2s ease;
}

.rz-nav a:hover{
    color:var(--rz-orange);
}

.rz-header-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.rz-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 18px;
    border-radius:14px;
    font-size:14px;
    font-weight:700;
    transition:all .2s ease;
    border:1px solid transparent;
    white-space:nowrap;
    cursor:pointer;
}

.rz-btn-primary{
    background:var(--rz-orange);
    color:var(--rz-white);
    box-shadow:var(--rz-glow);
}

.rz-btn-primary:hover{
    transform:translateY(-1px);
    filter:brightness(1.03);
}

.rz-btn-ghost{
    background:rgba(255,255,255,0.02);
    border-color:rgba(255,255,255,0.10);
    color:var(--rz-white);
}

.rz-btn-ghost:hover{
    border-color:rgba(255,69,0,.42);
    color:var(--rz-orange);
}

.rz-main{
    position:relative;
}

.rz-hero{
    padding:70px 24px 40px;
}

.rz-hero-inner{
    max-width:var(--rz-max);
    margin:0 auto;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:48px;
    align-items:center;
}

.rz-kicker,
.rz-section-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:34px;
    padding:0 14px;
    border-radius:999px;
    border:1px solid rgba(255,69,0,.18);
    background:rgba(255,69,0,.08);
    color:var(--rz-orange);
    font-size:12px;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
}

.rz-hero-title{
    margin:18px 0 18px;
    font-size:clamp(42px, 7vw, 78px);
    line-height:.96;
    letter-spacing:-.04em;
    font-weight:900;
    max-width:760px;
}

.rz-hero-title span{
    color:var(--rz-orange);
    text-shadow:0 0 18px rgba(255,69,0,.22);
}

.rz-hero-text{
    margin:0;
    max-width:650px;
    color:var(--rz-text-soft);
    font-size:18px;
    line-height:1.75;
}

.rz-hero-actions{
    margin-top:30px;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.rz-hero-metrics{
    margin-top:34px;
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:14px;
}

.rz-metric{
    border:1px solid var(--rz-border);
    background:rgba(255,255,255,0.02);
    border-radius:18px;
    padding:18px 16px;
}

.rz-metric strong{
    display:block;
    margin-bottom:8px;
    color:var(--rz-orange);
    font-size:20px;
    font-weight:900;
}

.rz-metric span{
    color:rgba(255,255,255,.8);
    font-size:13px;
    line-height:1.5;
}

.rz-hero-visual{
    position:relative;
    min-height:560px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.rz-hero-card{
    width:min(100%, 520px);
    border-radius:28px;
    border:1px solid rgba(255,255,255,.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
        rgba(10,13,20,.82);
    box-shadow:
        0 20px 60px rgba(0,0,0,.42),
        0 0 0 1px rgba(255,255,255,.02),
        0 0 40px rgba(255,69,0,.10);
    overflow:hidden;
    backdrop-filter:blur(8px);
}

.rz-panel-top{
    height:52px;
    padding:0 18px;
    display:flex;
    align-items:center;
    gap:8px;
    border-bottom:1px solid rgba(255,255,255,.06);
    background:rgba(255,255,255,.015);
}

.rz-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
}

.rz-dot-active{
    background:var(--rz-orange);
    box-shadow:0 0 16px rgba(255,69,0,.58);
}

.rz-panel-body{
    padding:28px;
}

.rz-panel-brand{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    margin-bottom:22px;
}

.rz-panel-brand img{
    width:76px;
    height:76px;
    object-fit:contain;
    filter:drop-shadow(0 0 24px rgba(255,69,0,.28));
}

.rz-panel-lines{
    display:grid;
    gap:10px;
    margin-bottom:24px;
}

.rz-panel-lines span{
    height:10px;
    border-radius:999px;
    background:linear-gradient(90deg, rgba(255,69,0,.72), rgba(255,255,255,.08));
}

.rz-panel-lines span:nth-child(1){ width:82%; }
.rz-panel-lines span:nth-child(2){ width:66%; }
.rz-panel-lines span:nth-child(3){ width:48%; }

.rz-panel-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px;
}

.rz-mini-card{
    padding:18px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.07);
    background:rgba(255,255,255,.02);
}

.rz-mini-card small{
    display:block;
    margin-bottom:8px;
    color:rgba(255,255,255,.55);
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.rz-mini-card strong{
    color:var(--rz-white);
    font-size:20px;
    font-weight:800;
}

.rz-floating-card{
    position:absolute;
    padding:12px 18px;
    border-radius:14px;
    border:1px solid rgba(255,69,0,.20);
    background:rgba(0,0,0,.52);
    color:var(--rz-orange);
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
    backdrop-filter:blur(8px);
}

.rz-floating-1{
    top:70px;
    right:10px;
}

.rz-floating-2{
    left:18px;
    bottom:58px;
}

.rz-section{
    padding:90px 24px;
}

.rz-section-header{
    max-width:920px;
    margin:0 auto 38px;
    text-align:center;
}

.rz-section-header h2{
    margin:18px 0 16px;
    font-size:clamp(30px, 4vw, 52px);
    line-height:1.06;
    letter-spacing:-.03em;
}

.rz-section-header p{
    margin:0 auto;
    max-width:760px;
    color:var(--rz-text-soft);
    font-size:17px;
    line-height:1.75;
}

.rz-about-grid,
.rz-product-grid{
    max-width:var(--rz-max);
    margin:0 auto;
    display:grid;
    gap:18px;
}

.rz-about-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
}

.rz-product-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    align-items:stretch;
}

.rz-card,
.rz-product-card,
.rz-tech-card,
.rz-cta-box{
    border:1px solid var(--rz-border);
    background:
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)),
        rgba(10,13,20,.76);
    border-radius:24px;
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.rz-card,
.rz-product-card{
    padding:26px;
}

.rz-card h3,
.rz-product-card h3{
    margin:0 0 12px;
    font-size:22px;
    line-height:1.15;
}

.rz-card p,
.rz-product-card p{
    margin:0;
    color:var(--rz-text-soft);
    line-height:1.75;
    font-size:15px;
}

.rz-product-card{
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    height:100%;
}

.rz-product-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(255,69,0,.08), transparent 45%);
    pointer-events:none;
}

.rz-product-index{
    display:inline-flex;
    margin-bottom:16px;
    font-size:14px;
    font-weight:900;
    color:var(--rz-orange);
    letter-spacing:.08em;
}

.rz-product-card p{
    flex-grow:1;
}

.rz-product-card-actions{
    margin-top:18px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.rz-tech-layout{
    max-width:var(--rz-max);
    margin:0 auto;
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:28px;
    align-items:start;
}

.rz-tech-copy{
    padding-right:20px;
}

.rz-tech-copy h2{
    margin:18px 0 16px;
    font-size:clamp(32px, 4vw, 50px);
    line-height:1.06;
    letter-spacing:-.03em;
}

.rz-tech-copy p{
    margin:0;
    max-width:690px;
    color:var(--rz-text-soft);
    font-size:17px;
    line-height:1.8;
}

.rz-tech-list{
    margin:26px 0 0;
    padding:0;
    list-style:none;
    display:grid;
    gap:12px;
}

.rz-tech-list li{
    position:relative;
    padding-left:20px;
    color:rgba(255,255,255,.86);
    font-size:15px;
}

.rz-tech-list li::before{
    content:'';
    position:absolute;
    left:0;
    top:9px;
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--rz-orange);
    box-shadow:0 0 14px rgba(255,69,0,.42);
}

.rz-tech-card{
    padding:26px;
    margin-top:20px;
    position:relative;
    z-index:1;
}

.rz-tech-card-top{
    color:var(--rz-orange);
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:18px;
}

.rz-tech-spectrum{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:12px;
    margin-bottom:22px;
}

.rz-tech-spectrum span{
    height:84px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.06);
}

.rz-spectrum-orange{ background:#FF4500; }
.rz-spectrum-dark{ background:#000000; }
.rz-spectrum-steel{ background:#111827; }
.rz-spectrum-light{ background:#FFFFFF; }

.rz-tech-card-copy strong{
    display:block;
    margin-bottom:8px;
    font-size:24px;
    color:var(--rz-white);
}

.rz-tech-card-copy p{
    margin:0;
    color:var(--rz-text-soft);
    line-height:1.75;
}

.rz-cta{
    padding-top:30px;
    padding-bottom:110px;
}

.rz-cta-box{
    max-width:var(--rz-max);
    margin:0 auto;
    padding:34px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
    position:relative;
    overflow:hidden;
}

.rz-cta-box::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(120deg, rgba(255,69,0,.10), transparent 46%);
    pointer-events:none;
}

.rz-cta-copy{
    max-width:700px;
    position:relative;
    z-index:1;
}

.rz-cta-copy h2{
    margin:16px 0 12px;
    font-size:clamp(28px, 4vw, 46px);
    line-height:1.08;
    letter-spacing:-.03em;
}

.rz-cta-copy p{
    margin:0;
    color:var(--rz-text-soft);
    line-height:1.75;
}

.rz-cta-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    position:relative;
    z-index:1;
}

.rz-footer{
    border-top:1px solid var(--rz-border);
    background:rgba(0,0,0,.46);
    padding-left:24px;
    padding-right:24px;
}

.rz-footer-inner{
    max-width:var(--rz-max);
    margin:0 auto;
    padding:28px 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
    flex-wrap:wrap;
}

.rz-footer-brand{
    display:flex;
    align-items:center;
    gap:14px;
}

.rz-footer-brand img{
    width:44px;
    height:44px;
    object-fit:contain;
}

.rz-footer-brand strong{
    display:block;
    margin-bottom:4px;
    font-size:18px;
}

.rz-footer-brand p{
    margin:0;
    color:var(--rz-text-soft);
    font-size:14px;
}

.rz-footer-links{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.rz-footer-links a{
    color:rgba(255,255,255,.82);
    font-size:14px;
}

.rz-footer-links a:hover{
    color:var(--rz-orange);
}

.rz-contact-grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:20px;
}

.rz-contact-card{
    padding:28px;
    border-radius:24px;
    border:1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
        rgba(10,13,20,.75);
}

.rz-contact-card h3{
    margin:0 0 10px;
    font-size:20px;
}

.rz-contact-card p{
    margin:0 0 16px;
    color:rgba(255,255,255,0.7);
    font-size:14px;
    line-height:1.7;
}

.rz-contact-link{
    color:#fff;
    font-weight:600;
    text-decoration:none;
    border-bottom:1px solid transparent;
    transition:.2s;
}

.rz-contact-link:hover{
    color:#FF4500;
    border-color:#FF4500;
}

.rz-contact-highlight{
    color:#FF4500;
    font-size:18px;
    font-weight:700;
}

.rz-legal-wrap{
    max-width:1000px;
    margin:0 auto;
}

.rz-legal-card{
    padding:34px;
    border-radius:24px;
    border:1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
        rgba(10,13,20,.78);
}

.rz-legal-card h3{
    margin:0 0 12px;
    font-size:22px;
    color:#FFFFFF;
}

.rz-legal-card p{
    margin:0 0 24px;
    color:rgba(255,255,255,0.74);
    line-height:1.85;
    font-size:15px;
}

body.rz-popup-open{
    overflow:hidden;
}

.rz-popup-overlay{
    position:fixed;
    inset:0;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .3s ease, visibility .3s ease;
}

.rz-popup-overlay.is-active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.rz-popup-backdrop{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at center, rgba(255,69,0,.08), transparent 28%),
        rgba(0,0,0,.78);
    backdrop-filter:blur(10px);
    opacity:0;
    transition:opacity .35s ease;
}

.rz-popup-overlay.is-visible .rz-popup-backdrop{
    opacity:1;
}

.rz-popup-card{
    position:relative;
    z-index:1;
    width:min(100%, 760px);
    border-radius:30px;
    border:1px solid rgba(255,255,255,.08);
    background:
        radial-gradient(circle at top right, rgba(255,69,0,.14), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
        rgba(10,13,20,.96);
    box-shadow:
        0 30px 90px rgba(0,0,0,.52),
        0 0 40px rgba(255,69,0,.10),
        inset 0 1px 0 rgba(255,255,255,.04);
    padding:36px;
    overflow:hidden;
    opacity:0;
    transform:translateY(26px) scale(.94);
    filter:blur(10px);
    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        opacity .35s ease,
        filter .35s ease;
    outline:none;
}

.rz-popup-overlay.is-visible .rz-popup-card{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
}

.rz-popup-card::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size:34px 34px;
    opacity:.75;
    pointer-events:none;
}

.rz-popup-card::after{
    content:'';
    position:absolute;
    inset:0;
    border-radius:30px;
    border:1px solid rgba(255,69,0,.25);
    pointer-events:none;
    opacity:.6;
    box-shadow:
        0 0 12px rgba(255,69,0,.15),
        inset 0 0 12px rgba(255,69,0,.05);
    animation:rzPopupBorderPulse 3.2s ease-in-out infinite;
}

.rz-popup-tech-lines{
    position:absolute;
    inset:0;
    pointer-events:none;
}

.rz-popup-tech-lines span{
    position:absolute;
    height:1px;
    background:linear-gradient(90deg, transparent, rgba(255,69,0,.45), transparent);
    opacity:.7;
}

.rz-popup-tech-lines span:nth-child(1){
    width:58%;
    top:74px;
    left:-12%;
    animation:rzPopupLineMove 5s linear infinite;
}

.rz-popup-tech-lines span:nth-child(2){
    width:44%;
    bottom:92px;
    right:-10%;
    animation:rzPopupLineMoveReverse 5.8s linear infinite;
}

.rz-popup-scan{
    position:absolute;
    inset:-20%;
    background:linear-gradient(
        115deg,
        transparent 35%,
        rgba(255,255,255,.03) 45%,
        rgba(255,69,0,.08) 50%,
        rgba(255,255,255,.03) 55%,
        transparent 65%
    );
    transform:translateX(-60%) rotate(8deg);
    pointer-events:none;
    animation:rzPopupScan 5.5s ease-in-out infinite;
}

.rz-popup-close{
    position:absolute;
    top:14px;
    right:16px;
    z-index:3;
    width:42px;
    height:42px;
    border:0;
    border-radius:12px;
    background:rgba(255,255,255,.04);
    color:#fff;
    font-size:24px;
    line-height:1;
    cursor:pointer;
    transition:.2s ease;
}

.rz-popup-close:hover{
    background:rgba(255,69,0,.16);
    color:#FF4500;
    transform:scale(1.04);
}

.rz-popup-brand{
    position:relative;
    z-index:2;
    margin-bottom:18px;
}

.rz-popup-brand img{
    width:86px;
    height:86px;
    object-fit:contain;
    filter:
        drop-shadow(0 0 10px rgba(255,69,0,.22))
        drop-shadow(0 0 28px rgba(255,69,0,.22));
    animation:rzPopupFoxFloat 3.8s ease-in-out infinite;
}

.rz-popup-content{
    position:relative;
    z-index:2;
}

.rz-popup-kicker{
    display:inline-flex;
    min-height:32px;
    align-items:center;
    padding:0 14px;
    border-radius:999px;
    border:1px solid rgba(255,69,0,.20);
    background:rgba(255,69,0,.08);
    color:#FF4500;
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.rz-popup-content h2{
    margin:18px 0 14px;
    font-size:clamp(30px, 4vw, 52px);
    line-height:1.02;
    letter-spacing:-.03em;
    max-width:620px;
    text-shadow:0 0 18px rgba(255,69,0,.08);
}

.rz-popup-content p{
    margin:0;
    max-width:560px;
    color:rgba(255,255,255,.76);
    font-size:16px;
    line-height:1.8;
}

.rz-popup-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:26px;
    position:relative;
    z-index:2;
}

@keyframes rzPopupBorderPulse{
    0%, 100%{
        opacity:.42;
        box-shadow:
            0 0 8px rgba(255,69,0,.08),
            inset 0 0 8px rgba(255,69,0,.04);
    }
    50%{
        opacity:.86;
        box-shadow:
            0 0 18px rgba(255,69,0,.20),
            inset 0 0 14px rgba(255,69,0,.08);
    }
}

@keyframes rzPopupScan{
    0%{
        transform:translateX(-70%) rotate(8deg);
        opacity:.35;
    }
    50%{
        opacity:.75;
    }
    100%{
        transform:translateX(70%) rotate(8deg);
        opacity:.35;
    }
}

@keyframes rzPopupLineMove{
    0%{
        transform:translateX(-14%);
        opacity:.22;
    }
    50%{
        opacity:.72;
    }
    100%{
        transform:translateX(18%);
        opacity:.22;
    }
}

@keyframes rzPopupLineMoveReverse{
    0%{
        transform:translateX(14%);
        opacity:.22;
    }
    50%{
        opacity:.72;
    }
    100%{
        transform:translateX(-18%);
        opacity:.22;
    }
}

@keyframes rzPopupFoxFloat{
    0%, 100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-6px);
    }
}

@media (max-width: 1100px){
    .rz-hero-inner,
    .rz-tech-layout{
        grid-template-columns:1fr;
    }

    .rz-hero-visual{
        min-height:auto;
    }

    .rz-about-grid{
        grid-template-columns:1fr;
    }

    .rz-product-grid{
        grid-template-columns:1fr;
    }

    .rz-cta-box{
        flex-direction:column;
        align-items:flex-start;
    }

    .rz-tech-copy{
        padding-right:0;
    }

    .rz-tech-card{
        margin-top:0;
    }
}

@media (max-width: 900px){
    .rz-header{
        padding-left:18px;
        padding-right:18px;
    }

    .rz-nav{
        display:none;
    }

    .rz-header-inner{
        padding:16px 0;
    }

    .rz-hero{
        padding:52px 18px 24px;
    }

    .rz-section{
        padding:72px 18px;
    }

    .rz-hero-metrics{
        grid-template-columns:1fr;
    }

    .rz-cta{
        padding-bottom:86px;
    }

    .rz-footer{
        padding-left:18px;
        padding-right:18px;
    }

    .rz-footer-inner{
        padding:24px 0;
    }
}

@media (max-width: 768px){
    .rz-contact-grid{
        grid-template-columns:1fr;
    }

    .rz-legal-card{
        padding:24px;
    }

    .rz-legal-card h3{
        font-size:20px;
    }

    .rz-popup-card{
        padding:26px;
        border-radius:22px;
    }

    .rz-popup-card::after{
        border-radius:22px;
    }

    .rz-popup-content h2{
        font-size:32px;
    }

    .rz-popup-content p{
        font-size:15px;
    }

    .rz-popup-brand img{
        width:72px;
        height:72px;
    }
}

@media (max-width: 640px){
    .rz-header-actions{
        gap:8px;
    }

    .rz-btn{
        min-height:42px;
        padding:0 14px;
        font-size:13px;
    }

    .rz-brand-logo{
        max-height:48px;
    }

    .rz-hero-title{
        line-height:1.02;
    }

    .rz-card,
    .rz-product-card,
    .rz-tech-card,
    .rz-cta-box{
        border-radius:20px;
    }

    .rz-panel-grid{
        grid-template-columns:1fr;
    }

    .rz-floating-card{
        display:none;
    }
}