
/*-------------------------------------------------------------------------------------------------------*/
/* ============================================================
   GPS LITE — NMA10GT Product Page Stylesheet
   gps-lite.css  |  PT. NAYMAS MAHKOTA ABADI
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ─── GLOBAL TOKENS ─────────────────────────────────────── */
:root {
    --gps-red:     #e13737;
    --gps-red-dim: rgba(225, 55, 55, 0.15);
    --gps-blue:    #31cfff;
    --gps-dark:    #080d17;
    --gps-dark2:   #0d1526;
    --gps-dark3:   #111d33;
    --gps-mid:     #1a2540;
    --gps-border:  rgba(255,255,255,0.07);
    --gps-text:    #c8d6ea;
    --gps-white:   #ffffff;
    --gps-accent-glow: 0 0 40px rgba(225, 55, 55, 0.35);
    --gps-font-display: 'Rajdhani', sans-serif;
    --gps-font-body:    'DM Sans', sans-serif;
    --max-w: 1140px;
    --side-pad: clamp(20px, 5vw, 80px);
}

/* ─── BASE OVERRIDE FOR GPS PAGE ───────────────────────── */
.gps-page {
    background-color: var(--gps-dark);
    color: var(--gps-text);
    font-family: var(--gps-font-body);
}

.gps-accent {
    color: var(--gps-red);
}

/* ─── SHARED CONTAINER ─────────────────────────────────── */
.gps-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--side-pad);
}

/* ─── SECTION HEAD ─────────────────────────────────────── */
.gps-section-head {
    text-align: center;
    margin-bottom: 60px;
}

.gps-section-eyebrow {
    display: inline-block;
    font-family: var(--gps-font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gps-red);
    margin-bottom: 14px;
    padding: 6px 18px;
    border: 1px solid var(--gps-red-dim);
    border-radius: 50px;
    background: var(--gps-red-dim);
}

.gps-section-title {
    font-family: var(--gps-font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--gps-white);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.gps-section-sub {
    font-size: 16px;
    color: var(--gps-text);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Light variants */
.gps-section-head--light .gps-section-title,
.gps-title--light { color: var(--gps-white); }
.gps-sub--light   { color: rgba(200,214,234,0.75); }
.gps-eyebrow--light { color: var(--gps-blue); border-color: rgba(49,207,255,0.2); background: rgba(49,207,255,0.08); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.gps-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 90px;
}

/* Background layers */
.gps-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--gps-dark);
}

.gps-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(49,207,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(49,207,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

.gps-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
.gps-glow-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(225,55,55,0.18) 0%, transparent 70%);
    top: -100px; right: -100px;
}
.gps-glow-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(49,207,255,0.12) 0%, transparent 70%);
    bottom: 0; left: 10%;
}

/* Inner layout */
.gps-hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 60px var(--side-pad) 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.gps-hero-badge {
    position: absolute;
    top: 0;
    left: var(--side-pad);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--gps-font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gps-blue);
    opacity: 0.7;
}

.gps-tag-line {
    font-family: var(--gps-font-display);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gps-blue);
    margin-bottom: 16px;
    opacity: 0.8;
}

.gps-hero-title {
    font-family: var(--gps-font-display);
    font-size: clamp(56px, 8vw, 96px);
    font-weight: 700;
    line-height: 1;
    color: var(--gps-white);
    margin: 0 0 20px;
    letter-spacing: 2px;
}

.gps-hero-subtitle {
    font-size: 16px;
    line-height: 1.75;
    color: var(--gps-text);
    font-weight: 300;
    max-width: 440px;
    margin-bottom: 32px;
}

/* Feature badges */
.gps-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.gps-feat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: rgba(225,55,55,0.1);
    border: 1px solid rgba(225,55,55,0.25);
    border-radius: 50px;
    font-family: var(--gps-font-display);
    font-size: 13px;
    font-weight: 600;
    color: #ff7a7a;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.gps-feat-badge:hover {
    background: rgba(225,55,55,0.2);
    border-color: var(--gps-red);
    color: var(--gps-white);
    transform: translateY(-2px);
}

.gps-feat-badge i { font-size: 12px; }

/* CTA Buttons */
.gps-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.gps-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--gps-red);
    color: #fff;
    border: 2px solid var(--gps-red);
    border-radius: 6px;
    font-family: var(--gps-font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(225,55,55,0.35);
}

.gps-btn-primary:hover {
    background: #c82020;
    border-color: #c82020;
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(225,55,55,0.45);
    color: #fff;
}

.gps-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--gps-text);
    border: 2px solid var(--gps-border);
    border-radius: 6px;
    font-family: var(--gps-font-body);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gps-btn-ghost:hover {
    border-color: rgba(255,255,255,0.3);
    color: var(--gps-white);
    transform: translateY(-3px);
}

/* Product Stage (Right side) */
.gps-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gps-product-stage {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gps-stage-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: gps-rotate 20s linear infinite;
}

.gps-ring-outer {
    width: 100%; height: 100%;
    border-color: rgba(49,207,255,0.1);
    animation-duration: 30s;
}

.gps-ring-middle {
    width: 72%; height: 72%;
    border-color: rgba(225,55,55,0.18);
    animation-duration: 20s;
    animation-direction: reverse;
}

.gps-ring-inner {
    width: 44%; height: 44%;
    border-color: rgba(49,207,255,0.15);
    animation-duration: 12s;
}

@keyframes gps-rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.gps-product-img-wrap {
    position: relative;
    z-index: 2;
    width: 56%;
    filter: drop-shadow(0 20px 60px rgba(225,55,55,0.4))
            drop-shadow(0 0 30px rgba(49,207,255,0.2));
    animation: gps-float 4s ease-in-out infinite;
}

@keyframes gps-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-16px); }
}

.gps-product-img {
    width: 100%;
    object-fit: contain;
}

/* Floating tags on product */
.gps-float-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 50px;
    font-family: var(--gps-font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 3;
    animation: gps-tag-pulse 3s ease-in-out infinite;
}

.gps-tag-top {
    top: 10%;
    right: 0;
    background: rgba(49,207,255,0.12);
    border: 1px solid rgba(49,207,255,0.3);
    color: var(--gps-blue);
}

.gps-tag-bottom {
    bottom: 15%;
    left: 0;
    background: rgba(225,55,55,0.12);
    border: 1px solid rgba(225,55,55,0.3);
    color: #ff7a7a;
    animation-delay: 1.5s;
}

@keyframes gps-tag-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.75; transform: scale(0.97); }
}

/* Scroll hint */
.gps-hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(200,214,234,0.4);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--gps-font-display);
    animation: gps-bounce 2s ease-in-out infinite;
}

@keyframes gps-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   KEUNGGULAN / ADVANTAGE SECTION
   ============================================================ */
.gps-advantage-section {
    padding: 100px 0;
    background: #f4f7fb;
    position: relative;
    overflow: hidden;
}

.gps-advantage-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--gps-dark), transparent);
    z-index: 1;
    pointer-events: none;
}

.gps-advantage-section .gps-section-title { color: #0d1526; }
.gps-advantage-section .gps-section-sub   { color: #4a5a75; }
.gps-advantage-section .gps-section-eyebrow {
    color: var(--gps-red);
    background: rgba(225,55,55,0.08);
    border-color: rgba(225,55,55,0.2);
}

.gps-adv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    position: relative;
    z-index: 2;
}

.gps-adv-card {
    background: #ffffff;
    border: 1px solid #e8eef7;
    border-radius: 16px;
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.gps-adv-card.gps-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gps-adv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gps-red), rgba(225,55,55,0));
    border-radius: 16px 16px 0 0;
}

.gps-adv-card:hover {
    border-color: rgba(225,55,55,0.2);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}

.gps-adv-card--accent {
    background: linear-gradient(135deg, #0d1526 0%, #1a2540 100%);
    border-color: rgba(225,55,55,0.2);
}

.gps-adv-card--accent h3   { color: #fff; }
.gps-adv-card--accent p    { color: rgba(200,214,234,0.75); }
.gps-adv-card--accent .gps-adv-list li { color: rgba(200,214,234,0.85); }
.gps-adv-card--accent .gps-adv-list li i { color: var(--gps-red); }

.gps-adv-card--accent::before {
    background: linear-gradient(90deg, var(--gps-red), transparent);
}

.gps-adv-card--accent:hover {
    border-color: rgba(225,55,55,0.4);
    box-shadow: 0 24px 60px rgba(225,55,55,0.15);
}

.gps-adv-icon-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.gps-adv-icon-wrap {
    position: relative;
    width: 64px; height: 64px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.gps-adv-icon-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 195, 255, 0.15);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.gps-adv-card:hover .gps-adv-icon-bg { background: var(--gps-red); }

.gps-adv-icon-wrap > i {
    position: relative;
    z-index: 1;
    font-size: 26px;
    color: var(--gps-red);
    line-height: 64px;
    width: 64px;
    text-align: center;
    transition: color 0.3s ease;
}

.gps-adv-card:hover .gps-adv-icon-wrap > i { color: #fff; }

.gps-adv-card h3 {
    font-family: var(--gps-font-display);
    font-size: 22px;
    font-weight: 700;
    color: #0d1526;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.gps-adv-card--accent h3 {
    color: #ffffff !important;
}

.gps-adv-card--accent p {
    color: #ffffff !important;
}

.gps-adv-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #4a5a75;
    margin-bottom: 24px;
    font-weight: 300;
}

.gps-adv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gps-adv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4a5a75;
    font-weight: 400;
}

.gps-adv-list li i {
    font-size: 12px;
    color: var(--gps-red);
    flex-shrink: 0;
    width: 18px; height: 18px;
    background: rgba(225,55,55,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   SPECIFICATIONS SECTION
   ============================================================ */
.gps-specs-section {
    padding: 110px 0;
    background: var(--gps-dark2);
    position: relative;
    overflow: hidden;
}

.gps-specs-bg-shape {
    position: absolute;
    top: -150px; right: -150px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225,55,55,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Specs layout: 3 columns */
.gps-specs-layout {
    display: grid;
    grid-template-columns: 1fr 260px 1fr;
    gap: 30px;
    align-items: start;
}

/* Spec Panel */
.gps-spec-panel {
    background: var(--gps-mid);
    border: 1px solid var(--gps-border);
    border-radius: 16px;
    padding: 36px 32px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gps-spec-panel:last-child {
    transform: translateX(20px);
}

.gps-spec-panel.gps-visible {
    opacity: 1;
    transform: translateX(0);
}

.gps-spec-panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gps-border);
}

.gps-spec-panel-header--mt {
    margin-top: 30px;
}

.gps-spec-panel-header i {
    width: 38px; height: 38px;
    background: var(--gps-red-dim);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: var(--gps-red);
    flex-shrink: 0;
}

.gps-spec-panel-header h3 {
    font-family: var(--gps-font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--gps-white);
    letter-spacing: 0.5px;
    margin: 0;
}

.gps-spec-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.gps-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--gps-border);
    gap: 16px;
}

.gps-spec-item:last-child { border-bottom: none; }

.gps-spec-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(200,214,234,0.5);
    letter-spacing: 0.3px;
    flex-shrink: 0;
    font-family: var(--gps-font-display);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.5px;
}

.gps-spec-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--gps-white);
    text-align: right;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gps-spec-value em {
    font-style: normal;
    font-size: 12px;
    color: rgba(200,214,234,0.5);
}

.gps-color-dot {
    display: inline-block;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #2a2a2a;
    border: 2px solid #555;
    flex-shrink: 0;
}

/* Protection grid */
.gps-protection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 4px;
}

.gps-prot-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    background: rgba(225,55,55,0.07);
    border: 1px solid rgba(225,55,55,0.18);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.gps-prot-badge:hover {
    background: rgba(225,55,55,0.15);
    border-color: rgba(225,55,55,0.35);
    transform: scale(1.03);
}

.gps-prot-badge i {
    font-size: 14px;
    color: var(--gps-red);
    flex-shrink: 0;
}

.gps-prot-badge span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(200,214,234,0.85);
    font-family: var(--gps-font-display);
    letter-spacing: 0.5px;
}

/* Spec Visual (center column) */
.gps-spec-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.gps-spec-visual.gps-visible {
    opacity: 1;
    transform: translateY(0);
}

.gps-spec-img-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: var(--gps-mid);
    border: 1px solid var(--gps-border);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
}

.gps-spec-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 60%, rgba(225,55,55,0.08) 0%, transparent 70%);
}

.gps-spec-img-frame img {
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 30px rgba(225,55,55,0.3));
    position: relative; z-index: 1;
}

.gps-spec-img-label {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--gps-font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(200,214,234,0.3);
    z-index: 2;
    white-space: nowrap;
}

.gps-spec-dimension-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    background: var(--gps-mid);
    border: 1px solid var(--gps-border);
    border-radius: 50px;
    font-family: var(--gps-font-display);
    font-size: 12px;
    font-weight: 600;
    color: rgba(200,214,234,0.6);
    letter-spacing: 0.5px;
}

.gps-spec-dimension-badge i { color: var(--gps-blue); font-size: 12px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.gps-cta-section {
    padding: 100px 0 120px;
    background: #f0f4fb;
}

.gps-cta-card {
    position: relative;
    background: linear-gradient(135deg, #0d1526 0%, #1a2540 60%, #0d1526 100%);
    border: 1px solid rgba(225,55,55,0.2);
    border-radius: 24px;
    padding: 64px;
    display: flex;
    align-items: center;
    gap: 60px;
    overflow: hidden;
}

.gps-cta-glow {
    position: absolute;
    top: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(225,55,55,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.gps-cta-content {
    flex: 1;
    position: relative; z-index: 1;
}

.gps-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--gps-font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gps-blue);
    margin-bottom: 18px;
    opacity: 0.8;
}

.gps-cta-content h2 {
    font-family: var(--gps-font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--gps-white);
    line-height: 1.2;
    margin-bottom: 18px;
}

.gps-cta-content p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(200,214,234,0.7);
    max-width: 460px;
    margin-bottom: 36px;
    font-weight: 300;
}

.gps-cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.gps-btn-ghost--dark {
    border-color: rgba(200,214,234,0.15);
    color: rgba(200,214,234,0.7);
}

.gps-btn-ghost--dark:hover {
    border-color: rgba(200,214,234,0.4);
    color: var(--gps-white);
}

.gps-cta-img {
    flex-shrink: 0;
    width: 260px;
    position: relative; z-index: 1;
    filter: drop-shadow(0 0 40px rgba(225,55,55,0.3));
    animation: gps-float 4s ease-in-out infinite;
}

.gps-cta-img img {
    width: 100%;
    object-fit: contain;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .gps-specs-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .gps-spec-visual {
        grid-column: 1 / -1;
        grid-row: 2;
        max-width: 300px;
        margin: 0 auto;
    }

    .gps-spec-panel:last-child {
        grid-column: 2;
        grid-row: 1;
    }
}

@media (max-width: 900px) {
    .gps-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
        gap: 40px;
    }

    .gps-hero-badge { display: none; }

    .gps-hero-subtitle { margin: 0 auto 32px; }
    .gps-hero-features { justify-content: center; }
    .gps-hero-cta      { justify-content: center; }

    .gps-hero-right {
        order: -1;
    }

    .gps-product-stage {
        width: 320px; height: 320px;
    }

    .gps-adv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gps-specs-layout {
        grid-template-columns: 1fr;
    }

    .gps-spec-visual {
        grid-column: 1;
        grid-row: auto;
        max-width: 260px;
        margin: 0 auto;
        order: -1;
    }

    .gps-spec-panel:last-child {
        grid-column: 1;
        grid-row: auto;
        transform: translateX(0);
    }

    .gps-cta-card {
        flex-direction: column;
        padding: 44px 32px;
        gap: 40px;
        text-align: center;
    }

    .gps-cta-content p { max-width: 100%; }
    .gps-cta-actions   { justify-content: center; }

    .gps-cta-img {
        width: 200px;
    }

    .gps-advantage-section { padding: 70px 0; }
    .gps-specs-section     { padding: 70px 0; }
    .gps-cta-section       { padding: 70px 0; }
}

@media (max-width: 480px) {
    .gps-hero-title {
        font-size: 56px;
    }

    .gps-adv-card { padding: 32px 24px; }

    .gps-protection-grid { grid-template-columns: 1fr; }

    .gps-hero-cta { flex-direction: column; }
    .gps-btn-primary,
    .gps-btn-ghost { width: 100%; justify-content: center; }
}