/* ============================================================
   SK Technology — Redesign layer
   Loaded after style.css. Re-themes color/type via tokens already
   declared in style.css, then adds new components: signature hero
   network graphic, rebuilt footer, stats/industries/timeline
   sections, and small polish across cards, buttons and forms.
   ============================================================ */

/* ---------- utility ---------- */
.mono {
    font-family: Poppins, sans-serif;
    letter-spacing: 0.02em;
}
::selection {
    background: var(--amber);
    color: var(--navy);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}

/* ---------- eyebrow → mono signal label ---------- */
.eyebrow {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}
.eyebrow:before {
    background: var(--grad-signal) !important;
    box-shadow: 0 0 10px rgba(255, 178, 56, 0.7);
}
.hero .eyebrow,
.page-hero .eyebrow,
.cta-banner .eyebrow {
    color: #9fd8d4 !important;
}

/* ---------- buttons ---------- */
.btn {
    font-family: Poppins, sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.btn-primary {
    background: var(--blue);
    box-shadow: 0 14px 30px rgba(20, 41, 79, 0.28);
}
.btn-primary:hover {
    background: var(--blue2);
    transform: translateY(-2px);
}
.btn-light {
    background: var(--amber);
    color: var(--navy);
}
.btn-light:hover {
    background: var(--amber2);
    transform: translateY(-2px);
}
.hero .btn-outline,
.cta-banner .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   HERO — signature: layered "network map" signal grid
   ============================================================ */
.hero {
    background: var(--navy);
}
.hero:before {
    background: radial-gradient(circle at 12% 18%, rgba(31, 59, 115, 0.55), transparent 42%),
        radial-gradient(circle at 88% 82%, rgba(23, 166, 160, 0.28), transparent 48%),
        linear-gradient(180deg, rgba(10, 16, 28, 0.35), rgba(10, 16, 28, 0.82));
}
.hero:after {
    background-image: linear-gradient(rgba(255, 178, 56, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 178, 56, 0.06) 1px, transparent 1px);
}
.hero-slide:before {
    background: linear-gradient(100deg, rgba(10, 15, 24, 0.96) 0%, rgba(10, 16, 28, 0.92) 42%, rgba(20, 41, 79, 0.5) 100%);
}
.hero .eyebrow:before {
    background: var(--grad-signal) !important;
}
.hero h1 span {
    background: linear-gradient(120deg, var(--amber) 0%, #ffd27a 45%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-dots button.active {
    background: var(--grad-signal);
}
.hero-arrow:hover {
    background: var(--amber);
    color: var(--navy);
}

/* signal-node signature graphic, sits inside hero, right side, decorative */
.hero-signal {
    position: absolute;
    z-index: 2;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: min(38vw, 420px);
    opacity: 0.9;
    pointer-events: none;
}
.hero-signal circle.node {
    fill: var(--amber);
    filter: drop-shadow(0 0 6px rgba(255, 178, 56, 0.8));
    animation: pulse-node 2.6s ease-in-out infinite;
}
.hero-signal circle.node.n2 {
    animation-delay: 0.5s;
    fill: #7ee8e0;
    filter: drop-shadow(0 0 6px rgba(126, 232, 224, 0.8));
}
.hero-signal circle.node.n3 {
    animation-delay: 1s;
}
.hero-signal circle.node.n4 {
    animation-delay: 1.5s;
    fill: #7ee8e0;
    filter: drop-shadow(0 0 6px rgba(126, 232, 224, 0.8));
}
.hero-signal line {
    stroke: rgba(255, 255, 255, 0.25);
    stroke-width: 1.4;
}
@keyframes pulse-node {
    0%, 100% {
        r: 5;
        opacity: 0.75;
    }
    50% {
        r: 8;
        opacity: 1;
    }
}
@media (max-width: 900px) {
    .hero-signal {
        display: none;
    }
}

/* slide-1 is image-only (no headline) — fade the dark overlay while it's
   active so the banner photo itself shows clearly instead of looking washed out */
.hero:before,
.hero:after {
    transition: opacity 0.6s ease;
}
.hero.hero-image-slide:before,
.hero.hero-image-slide:after {
    opacity: 0.15;
}
.hero-slide {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.slide-1.image-only {
    background-position: center 30%;
}

/* ---------- scrolled header: breathing room around logo + CTA ---------- */
.header.scrolled .header-row {
    padding: 14px 34px 14px 30px;
    gap: 24px;
}
.header.scrolled .brand {
    margin-right: 6px;
    color: var(--navy);
}
.header.scrolled .btn-primary {
    margin-left: 6px;
}

/* ---------- contact page: "Get Support" promo card ---------- */
.support-promo-card {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 16px;
    padding: 26px;
}
.support-promo-art {
    flex: none;
    width: 84px;
    height: 84px;
}
.support-promo-art svg {
    width: 100%;
    height: 100%;
}
.support-promo-card h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
}
.support-promo-card p {
    margin: 0 0 16px;
    font-size: 0.9rem;
    color: var(--muted);
}
.support-promo-card .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}
@media (max-width: 560px) {
    .support-promo-card {
        flex-direction: column;
        text-align: center;
    }
}

/* metrics band → recast as "system status" strip */
.metrics {
    background: rgba(10, 16, 28, 0.86);
    border-color: rgba(255, 178, 56, 0.18);
}
.metric strong {
    font-family: Poppins, sans-serif;
    background: linear-gradient(120deg, var(--amber), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ============================================================
   PAGE HERO (inner pages) — split layout with signal graphic
   ============================================================ */
.page-hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: auto;
    min-height: 340px;
    padding: 150px 0 48px;
    box-sizing: border-box;
}
@media (max-width: 640px) {
    .page-hero {
        height: auto;
        min-height: 320px;
        padding: 130px 0 40px;
    }
}
.page-hero h1 {
    font-size: clamp(1.9rem, 2.7vw, 2.7rem);
    line-height: 1.2;
}
.page-hero p {
    font-size: 1rem;
}
.page-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(31, 59, 115, 0.6), transparent 45%),
        radial-gradient(circle at 92% 85%, rgba(23, 166, 160, 0.28), transparent 48%);
    pointer-events: none;
}
.page-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 178, 56, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 178, 56, 0.05) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at 20% 40%, #000 0%, transparent 65%);
    pointer-events: none;
}
.page-hero .container {
    position: relative;
    z-index: 2;
    max-width: 680px;
}
.page-hero .eyebrow {
    color: #9fd8d4 !important;
}
.page-hero-mark {
    position: absolute;
    z-index: 1;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    width: min(34vw, 380px);
    opacity: 0.55;
    pointer-events: none;
}
@media (max-width: 900px) {
    .page-hero-mark {
        display: none;
    }
}

/* breadcrumb-style trail under eyebrow on inner pages */
.hero-trail {
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: Poppins, sans-serif;
    font-size: 0.76rem;
    color: #7f8db3;
    margin-top: 14px;
}
.hero-trail a {
    color: #c7d3f5;
}
.hero-trail a:hover {
    color: var(--amber);
}

/* ============================================================
   Cards / sections polish
   ============================================================ */
.card:before {
    background: var(--grad-signal) !important;
}
.card-icon {
    background: linear-gradient(135deg, rgba(31, 59, 115, 0.1), rgba(23, 166, 160, 0.14));
    color: var(--blue);
}
.card:hover .card-icon {
    background: var(--grad-signal);
    color: var(--navy);
}
.text-link {
    color: var(--blue);
    font-weight: 700;
}

/* section dividers to break up long pages */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
    margin: 0;
}

/* ---------- stat / capability strip (services, about, product) ---------- */
.capability-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 46px 0 0;
}
.capability-strip .cap {
    background: #fff;
    padding: 26px 22px;
    text-align: center;
}
.capability-strip strong {
    display: block;
    font-family: Poppins, sans-serif;
    font-size: 1.9rem;
    color: var(--blue);
}
.capability-strip span {
    font-size: 0.86rem;
    color: var(--muted);
}
@media (max-width: 760px) {
    .capability-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- industries served (new section, homepage) ---------- */
.industries {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.industry {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 14px;
    text-align: center;
    transition: 0.25s;
}
.industry i {
    display: block;
    font-size: 1.3rem;
    color: var(--cyan);
    margin-bottom: 10px;
}
.industry:hover {
    border-color: var(--amber);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.industry span {
    font-size: 0.84rem;
    font-weight: 600;
}
@media (max-width: 900px) {
    .industries {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 560px) {
    .industries {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- timeline (about page milestones) ---------- */
.timeline {
    position: relative;
    margin-top: 40px;
    padding-left: 28px;
    border-left: 2px solid var(--line);
    display: grid;
    gap: 34px;
}
.timeline-item {
    position: relative;
}
.timeline-item:before {
    content: "";
    position: absolute;
    left: -34px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 0 4px rgba(255, 178, 56, 0.18);
}
.timeline-item .yr {
    font-family: Poppins, sans-serif;
    color: var(--blue);
    font-weight: 600;
    font-size: 0.86rem;
}
.timeline-item h3 {
    margin: 4px 0 6px;
}
.timeline-item p {
    margin: 0;
    color: var(--muted);
}

/* ---------- testimonial grid (upgrade from single quote) ---------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testimonial-grid .testimonial {
    background: var(--soft);
    border-radius: var(--radius);
    padding: 30px 26px;
    text-align: left;
}
.testimonial-grid .quote {
    font-size: 1rem;
    color: var(--ink);
}
.testimonial-grid .client {
    margin-top: 14px;
    font-size: 0.86rem;
    color: var(--muted);
}
.testimonial-grid .stars {
    color: var(--amber);
    margin-bottom: 10px;
    letter-spacing: 2px;
}
@media (max-width: 860px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.contact-grid {
    align-items: start;
}

/* ---------- product page: category intro + note strip ---------- */
.product-note {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 26px 0 6px;
}
.product-note i {
    color: var(--cyan);
    font-size: 1.2rem;
    margin-top: 3px;
}
.product-note p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}
.section-title h2 span {
    color: var(--blue);
}

/* ============================================================
   FOOTER — total rebuild
   ============================================================ */
.footer {
    background: var(--navy);
    padding: 0;
    overflow: visible;
}
.footer:before {
    background: linear-gradient(90deg, transparent, var(--amber), var(--cyan), transparent);
}

.footer-cta {
    position: relative;
    z-index: 3;
    margin-top: -46px;
}
.footer-cta .inner {
    background: linear-gradient(120deg, var(--blue2), var(--blue));
    border-radius: var(--radius-lg);
    padding: 42px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 30px 60px rgba(10, 16, 28, 0.35);
}
.footer-cta h2 {
    color: #fff;
    font-size: 1.6rem;
    margin: 0 0 6px;
}
.footer-cta p {
    color: #cbd6ee;
    margin: 0;
    max-width: 460px;
}
.footer-cta .actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-main {
    padding: 90px 0 34px;
}
.footer-grid {
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1.1fr;
}
.footer .brand span {
    font-family: Poppins, sans-serif;
    font-weight: 700;
}
.footer-tagline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: Poppins, sans-serif;
    font-size: 0.78rem;
    color: #7ee8e0;
}
.footer-tagline .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
    animation: blink-dot 2.4s ease-in-out infinite;
}
@keyframes blink-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #cbd6ee;
    transition: 0.25s;
}
.footer-social a:hover {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--navy);
    transform: translateY(-3px);
}
.footer h3 {
    font-family: Poppins, sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7f8db3;
}
.footer-links a:hover {
    color: var(--amber);
}
.footer-contact i {
    color: var(--cyan);
}
.footer-hours {
    margin-top: 14px;
    font-size: 0.86rem;
    color: #97a5d1;
    display: flex;
    gap: 8px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: Poppins, sans-serif;
    font-size: 0.76rem;
    color: #7f8db3;
}
.footer-bottom a {
    color: #7f8db3;
}
.footer-bottom a:hover {
    color: var(--amber);
}
@media (max-width: 900px) {
    .footer-cta .inner {
        padding: 32px 26px;
    }
    .footer-main {
        padding: 70px 0 26px;
    }
}

/* ---------- contact form: individual / department toggle ---------- */
.contact-type-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.contact-type-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 13px 10px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    color: #26385e;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
}
.contact-type-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}
.contact-type-option:has(input:checked) {
    border-color: var(--blue);
    background: rgba(31, 59, 115, 0.07);
    color: var(--blue);
}
.contact-type-option i {
    font-size: 0.95rem;
}
.order-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 17px;
}
.order-type-option {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    padding: 11px 14px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.86rem;
    color: #26385e;
    cursor: pointer;
    transition: 0.2s;
}
.order-type-option input {
    width: auto;
    margin: 0;
    accent-color: var(--blue);
}
.order-type-option:has(input:checked) {
    border-color: var(--blue);
    background: rgba(31, 59, 115, 0.07);
    color: var(--blue);
}
@media (max-width: 560px) {
    .contact-type-toggle {
        grid-template-columns: 1fr;
    }
    .order-type-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- support ticket page ---------- */
.ticket-card {
    padding: 38px;
}
.ticket-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}
.ticket-card-head img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 10px;
    background: #f1f5fb;
    padding: 6px;
    flex-shrink: 0;
}
.ticket-card-head h2 {
    font-size: 1.3rem;
    margin: 0 0 3px;
}
.ticket-card-head p {
    margin: 0;
    font-size: 0.85rem;
    color: #6c7a99;
}
.required-note {
    font-size: 0.8rem;
    color: #6c7a99;
    margin-bottom: 20px;
}
.required-note span {
    color: #d64545;
    font-weight: 800;
}
.ticket-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.ticket-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}
label .opt {
    font-weight: 600;
    color: #96a3c2;
    text-transform: none;
}
.editor {
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 17px;
    overflow: hidden;
}
.editor-toolbar {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 8px 9px;
    border-bottom: 1px solid var(--line);
    background: #f8fafc;
    flex-wrap: wrap;
}
.editor-toolbar button {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    border-radius: 6px;
    color: #40506d;
    cursor: pointer;
    font-size: 0.85rem;
    transition: 0.15s;
}
.editor-toolbar button:hover {
    background: #e6ecf7;
    color: var(--blue);
}
.editor-toolbar .sep {
    width: 1px;
    height: 20px;
    background: var(--line);
    margin: 0 4px;
}
.editor-body {
    min-height: 130px;
    max-height: 260px;
    overflow-y: auto;
    padding: 13px 14px;
    font: inherit;
    font-size: 0.95rem;
    line-height: 1.55;
}
.editor-body:empty:before {
    content: attr(data-placeholder);
    color: #9aa5c0;
}
.editor-body:focus {
    outline: 0;
}
.attachment-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: -4px 0 22px;
    flex-wrap: wrap;
}
.attachment-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--blue);
    cursor: pointer;
}
.attachment-name {
    font-size: 0.82rem;
    color: #6c7a99;
    background: #f1f5fb;
    padding: 5px 11px;
    border-radius: 999px;
}
.ticket-actions {
    display: flex;
    gap: 12px;
}
.ticket-actions .btn-outline {
    border: 1.5px solid var(--line);
    color: #40506d;
}
.ticket-success {
    display: none;
    text-align: center;
    padding: 20px 10px 6px;
}
.ticket-success.show {
    display: block;
}
.ticket-success .tick {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 18px;
}
.ticket-success h3 {
    margin: 0 0 8px;
}
.ticket-success .ticket-id {
    display: inline-block;
    margin: 12px 0 6px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #f1f5fb;
    color: var(--blue);
    font-weight: 800;
    letter-spacing: 0.5px;
}
.ticket-success p {
    color: #6c7a99;
    font-size: 0.92rem;
}
.support-sidebar .card {
    padding: 26px;
    margin-bottom: 18px;
}
.support-sidebar h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}
.support-sidebar .contact-detail {
    margin-bottom: 16px;
}
.priority-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(31, 59, 115, 0.07);
    color: var(--blue);
}
@media (max-width: 720px) {
    .ticket-row,
    .ticket-row-3 {
        grid-template-columns: 1fr;
    }
    .ticket-card {
        padding: 26px;
    }
}

