/* ============================================================
   STYLE.CSS — MAIN STYLESHEET
   Structure:
   1.  Fonts & Reset
   2.  Base Typography
   3.  Layout Utilities
   4.  Header & Navigation
       4a. Desktop Nav
       4b. Mobile Nav / Hamburger
   5.  Hero Section
   6.  Industries Section
   7.  Solutions Section
   8.  Technology Section
   9.  Why Choose Us Section
  10.  Page – Default Page Styles
  11.  Page – Intro Section
  12.  Contact Section
  13.  Two-Column Section
  14.  Service Features Section
  15.  Coverage Note Section
  16.  Final CTA Section
  17.  Footer
  18.  Shared / Utility Classes
  19.  Responsive Overrides (≤ 992px, ≤ 576px)
============================================================ */


/* ============================================================
   1. FONTS & RESET
============================================================ */

body {
    margin: 0;
    font-family: "Inter", sans-serif;
}


/* ============================================================
   2. BASE TYPOGRAPHY
============================================================ */

h1,
h2,
h3 {
    font-family: "Inter", sans-serif;
    font-weight: 600 !important;
}


/* ============================================================
   3. LAYOUT UTILITIES
============================================================ */

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.container-side-margin {
    padding: 0 60px;
}

.section-tag {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
}

.blur {
    background: rgba(255, 255, 255, 0.5);
    padding: 16px 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid;
    border-radius: 22px;
    font-size: 12px;
    width: fit-content;
}

.btn-outline {
    color: #000;
    background: #fff;
    border: 1px solid;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
}


/* ============================================================
   4. HEADER & NAVIGATION
============================================================ */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.site-logo a {
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    color: #111;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header-actions a {
    text-decoration: none;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid;
    border-radius: 22px;
    font-size: 12px;
}


/* ============================================================
   4a. DESKTOP NAVIGATION
============================================================ */

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav .menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.site-nav .menu>li {
    position: relative;
}

.site-nav .menu>li>a {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    padding: 10px 0;
    display: inline-block;
}

.site-nav .menu>li:hover>a {
    color: #000;
}

/* Dropdown arrow */
.site-nav .menu>li.menu-item-has-children>a::after {
    content: "▾";
    font-size: 12px;
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.25s ease;
}

.site-nav .menu>li.menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
}

/* Sub-menu */
.site-nav .sub-menu {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 260px;
    background: #ffffff;
    border-radius: 10px;
    padding: 12px 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;
}

.site-nav li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-nav .sub-menu li a {
    display: block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}

.site-nav .sub-menu li a:hover {
    background: #f5f5f5;
    color: #000;
}


/* ============================================================
   4b. MOBILE NAVIGATION
============================================================ */

/* Hide desktop nav on mobile */
@media (max-width: 991px) {

    .site-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block !important;
        cursor: pointer;
    }

    .mobile-menu-toggle svg {
        width: 28px;
        height: 28px;
        fill: #000;
    }

    /* Disable desktop hover dropdowns on mobile */
    .site-nav li:hover>.sub-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(0);
    }
}

/* Hide toggle on desktop */
.mobile-menu-toggle {
    display: none;
}

/* Overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: none;
}

/* Slide panel */
.mobile-menu-inner {
    position: absolute;
    right: -100%;
    top: 0;
    width: 85%;
    height: 100%;
    background: #fff;
    padding: 30px;
}

.mobile-menu-close {
    font-size: 22px;
    cursor: pointer;
    text-align: right;
    margin-bottom: 30px;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
}

.mobile-menu-list li {
    margin-bottom: 18px;
}

.mobile-menu-list a {
    font-size: 18px;
    text-decoration: none;
    color: #000;
}

.mobile-actions {
    margin-top: 30px;
    display: flex;
    gap: 12px;
}

/* Mobile submenu toggle */
.menu-item-has-children {
    position: relative;
}

.menu-item-has-children>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 40px;
    pointer-events: auto;
}

.submenu-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    display: none;
    pointer-events: auto;
}

.submenu-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.menu-item-has-children.open>.submenu-toggle svg {
    transform: translateY(-50%) rotate(180deg);
}

@media (max-width: 991px) {
    .mobile-menu-list .sub-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        position: static;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding-left: 15px;
    }

    .mobile-menu-list .menu-item-has-children.open>.sub-menu {
        display: block;
    }
}


/* ============================================================
   5. HERO SECTION
============================================================ */
.custom-logo {
    height: 70px;
}

.site-header.scrolled .custom-logo {
    height: 60px;
}

.hero-section {
    padding: 20px 0 0px;
    background: #f5f5f7;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 2.3fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-left h1 {
    font-size: 56px;
    font-stretch: 110%;
    font-weight: 800;
    line-height: 1.05;
}

.hero-right p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #111;
    color: #fff;
    border-radius: 24px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.hero-image img {
    width: 100%;
    object-fit: cover;
    height: 32rem;
    margin-top: 30px;
}

.page-id-11 .hero-image img {
    height: 40rem;
}

.hero-textACF {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* ============================================================
   6. INDUSTRIES SECTION
============================================================ */

.industries-section {
    padding: 100px 0;
}

.solution-header {
    display: grid;
    grid-template-columns: 2.5fr 2.5fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.industries-header {
    display: grid;
    grid-template-columns: 2.3fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.industries-left h2 {
    font-size: 40px;
    margin-top: 12px;
    line-height: 1.2;
}

.industries-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
}

.industries-right img {
    width: 100%;
    border-radius: 10px;
}

/* Cards grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 18px;
    cursor: pointer;
    height: 25rem;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.industry-card h3 {
    font-size: 22px;
    margin: 18px 0 10px;
    color: #111;
    transition: color 0.35s ease;
}

.industry-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    transition: color 0.35s ease;
}

.Tailored-content {
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

/* Icon */
.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

/* Hover state */
.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
    background: #3c3c3c;
}

.industry-card:hover h3 {
    color: #fff;
}

.industry-card:hover p {
    color: #fff !important;
}

.industry-card:hover .icon-circle {
    transform: scale(1.1);
    background: #ffffff;
    color: #111;
}

/* Active state */
.industry-card.active {
    background: #3b3b3b;
}

.industry-card.active h3 {
    color: #fff;
}

.industry-card.active p {
    color: #ddd;
}

.industry-card.active .icon-circle {
    background: #fff;
    color: #111;
}

.industry-card.active:hover {
    background: #2f2f2f;
}


/* ============================================================
   7. SOLUTIONS SECTION
============================================================ */

.solutions-section {
    padding: 100px 0;
    background: #fff;
}

.solutions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.solutions-header h2 {
    font-size: 42px;
}

.btn-see-all {
    background: #111;
    color: #fff;
    padding: 10px 22px;
    border-radius: 22px;
    font-size: 14px;
    text-decoration: none;
}

/* Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.solution-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 32rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.solution-card.large {
    grid-column: span 2;
}

.solution-card.wide {
    grid-column: span 2;
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

/* Overlay */
.solution-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0), rgba(138, 138, 138, 0));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.solution-overlay h3 {
    font-size: 22px;
    margin: 0;
}

.solution-overlay p {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}


/* ============================================================
   8. TECHNOLOGY SECTION
============================================================ */

.technology-section {
    padding: 100px 0;
    background: #fff;
}

.technology-header {
    display: grid;
    grid-template-columns: 2.3fr 0.8fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: center;
}

.technology-header h2 {
    font-size: 40px;
    margin: 15px 0;
    line-height: 1.2;
}

.tech-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    font-weight: 600;
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 18rem;
    align-items: center;
}

.tech-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 37rem;
}

/* Features grid */
.tech-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.tech-item {
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.tech-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.tech-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 14px;
}

.tech-item a {
    font-size: 14px;
    color: #111;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tech-item a span {
    transition: transform 0.25s ease;
}

.tech-item a:hover span {
    transform: translateX(4px);
}


/* ============================================================
   9. WHY CHOOSE US SECTION
============================================================ */

.why-choose-section {
    padding: 100px 0;
    background: #fff;
}

.why-header {
    display: grid;
    grid-template-columns: 2.3fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 30px;
}

.why-header h2 {
    font-size: 40px;
    line-height: 1.25;
    margin-top: 12px;
}

.why-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    font-weight: 400;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-item {
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-6px);
}

.why-item h3 {
    font-size: 22px;
    margin: 18px 0 10px;
}

.why-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}

.why-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slider */
.why-slider {
    position: relative;
}

.why-slide {
    display: none;
    animation: fade 0.4s ease;
}

.why-slide.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-slider-controls {
    display: flex;
    margin-top: 12px;
}

.why-slider-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #000000;
    background: #fff;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    right: 0;
}

button.why-prev {
    left: 0;
}

/* ============================================================
   10. Final CTA
============================================================ */

.hero-footer {
      position: relative;
      height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }

    /* Overlay */
    .hero-footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
    }

    .hero-content-footer {
      position: relative;
      max-width: 900px;
      padding: 20px;
    }

    .hero-footer h1 {
      font-size: 48px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero-footer p {
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 30px;
      color: #ddd;
    }

    .hero-footer button {
      padding: 14px 30px;
      font-size: 16px;
      border: none;
      border-radius: 30px;
      background: #000;
      color: #fff;
      cursor: pointer;
      transition: 0.3s;
    }

    .hero-footer button:hover {
      background: #333;
    }
/* ============================================================
   11. PAGE – DEFAULT PAGE STYLES
============================================================ */

.page-header {
    padding: 80px 0 40px;
}

.page-header .section-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    font-weight: 600;
}

.page-header h1 {
    font-size: 54px;
    line-height: 1.2;
    margin: 12px 0 16px;
}

.page-header p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 520px;
    font-weight: 500;
    color: #111;
}

/* Intro */
.section-intro {
    padding: 80px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-left h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.intro-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.intro-right img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* Two-column text */
.section-two-column {
    padding: 80px 0;
    background: #f8f8f8;
}

.section-two-column h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.column-left,
.column-right {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* Stats */
.section-stats {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    margin-bottom: 6px;
    color: #111;
}

.stat-item p {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

/* Features */
.section-features {
    padding: 80px 0;
    background: #fff;
}

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

.feature-item {
    padding: 30px;
    border-radius: 16px;
    background: #f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}


/* ============================================================
   12. PAGE – INTRO SECTION (TEXT GRID STYLE)
============================================================ */

.page-intro-section {
    padding: 80px 0 60px;
    background: #fff;
}

.page-intro-grid {
    display: grid;
    align-items: start;
}

.page-intro-left .section-tag {
    display: inline-block;
    margin-bottom: 12px;
}

.page-intro-left h2 {
    font-size: 40px;
    line-height: 1.05;
    font-weight: 600;
    margin: 0;
}

.page-intro-right p {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
    color: #000;
}


/* ============================================================
   13. CONTACT SECTION
============================================================ */

.contact-section {
    padding: 100px 0;
    background: #f7f7f7;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-left .section-tag {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
}

.contact-left h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
}

.contact-left p {
    font-size: 16px;
    color: #666;
    max-width: 420px;
}

.contact-right {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.contact-right form {
    display: grid;
    gap: 20px;
}

.contact-right input,
.contact-right textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    outline: none;
    transition: all 0.2s ease;
}

.contact-right input:focus,
.contact-right textarea:focus {
    border-color: #111;
}

.contact-right input[type="submit"] {
    background: #111;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.contact-right input[type="submit"]:hover {
    background: #000;
    transform: translateY(-2px);
}


/* ============================================================
   14. TWO-COLUMN SECTION
============================================================ */

.two-column-section {
    padding: 80px 0;
}

.two-column-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
}

.two-column-left h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
}

.two-column-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    max-width: 520px;
}

.two-column-right {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.two-column-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}


/* ============================================================
   15. SERVICE FEATURES SECTION
============================================================ */

.service-features-section {
    padding: 80px 0;
    background: #fff;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.service-feature-card {
    background: #f8f8f8;
    padding: 35px 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #111;
}

.service-feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.service-feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}


/* ============================================================
   16. COVERAGE NOTE SECTION
============================================================ */

.coverage-note-section {
    padding: 80px 0;
}

.coverage-note-inner h2 {
    margin: 15px 0;
    font-size: 50px;
}

.coverage-note-inner p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}


/* ============================================================
   17. FOOTER
============================================================ */

.site-footer {
    background: #111;
    color: #ddd;
    padding: 60px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-brand h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
    color: #bbb;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 12px 40px;
}

.footer-menu li a {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
}

.footer-menu li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: #999;
}


/* ============================================================
   18. RESPONSIVE OVERRIDES — ≤ 992px (Tablet)
============================================================ */

@media (max-width: 992px) {
    .prc-inner {
        padding: 0 26px !important;
    }

    .fac-inner {
        padding: 0 26px !important;
    }

    .tcl-inner {
        padding: 0 26px !important;
    }

    /* Layout */
    .container-side-margin {
        padding: 0 26px !important;
    }

    .fcs-inner {
        padding: 0 26px !important;
    }

    .wcu-inner {
        padding: 0 26px !important;
    }

    /* Hero */
    section.hero-section {
        padding: 0;
    }

    .hero-content {
        grid-template-columns: unset;
        gap: 10px;
    }

    .hero-left h1 {
        font-size: 30px;
        margin: 20px 0 0 !important;
    }

    .hero-image img {
        height: 14rem;
    }

    /* Industries */
    .industries-section {
        padding: 50px 0;
    }

    .industries-header {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .industry-card {
        height: 15rem;
    }

    /* Solutions */
    section.solutions-section {
        padding: 50px 0;
    }

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

    .solution-card.large,
    .solution-card.wide {
        grid-column: span 2;
    }

    /* Technology */
    .technology-section {
        padding: 50px 0;
    }

    .technology-header {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .technology-content {
        grid-template-columns: 1fr;
    }

    .tech-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Why Choose */
    .why-choose-section {
        padding: 50px 0;
    }

    .why-header {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .why-item {
        padding: 0 10px;
    }

    button.why-next {
        left: 60px;
    }

    /* Page defaults */
    .intro-grid,
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .page-header h1 {
        font-size: 36px;
    }

    /* Intro section */
    .page-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-intro-left h2 {
        font-size: 40px;
    }

    .page-intro-right p {
        max-width: 100%;
        font-size: 16px;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-left h2 {
        font-size: 32px;
    }

    /* Two-column */
    .two-column-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .two-column-left h2 {
        font-size: 32px;
    }

    .two-column-desc {
        max-width: 100%;
    }

    /* Service features */
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Technology header */
    .technology-header h2 {
        font-size: 32px;
    }

    .why-header h2 {
        font-size: 32px;
    }
}


/* ============================================================
   19. RESPONSIVE OVERRIDES — ≤ 576px (Mobile)
============================================================ */

@media (max-width: 576px) {

    .industries-left h2 {
        font-size: 32px;
        margin-bottom: 0;
    }

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

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

    .solution-card {
        height: 220px;
        grid-column: span 2;
    }

    .solutions-header h2 {
        font-size: 30px;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Why Choose Us Section  (.wcu-*)
   ============================================================ */
.wcu-wrap,
.wcu-wrap * {
    box-sizing: border-box;
}

.wcu-wrap {
    padding: 144px 0 50px;
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #1d1d1f;
}

.wcu-inner {
    margin: 0 auto;
    padding: 0 60px;
}

/* Header */
.wcu-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.wcu-head-title {
    font-size: clamp(28px, 3.8vw, 48px);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.03em;
    line-height: 1.07;
    margin: 0;
}

.wcu-head-link {
    font-size: 17px;
    color: #0094c0;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.01em;
    transition: color 0.15s;
}

.wcu-head-link:hover {
    color: #0094c0;
}

/* Grid */
.wcu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    align-items: stretch;
}

/* Card */
.wcu-card {
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #f5f5f7;
}

.wcu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.13);
}

/* Image panel */
.wcu-panel {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 18rem;
}

/* SVG icon (cards 2-4) */
.wcu-panel-icon {
    width: 42%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
}

.wcu-card:hover .wcu-panel-icon {
    transform: scale(1.1) translateY(-5px);
}

/* Real photo image (card 1) */
.wcu-panel-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wcu-card:hover .wcu-panel-photo {
    transform: scale(1.05);
}

/* Color dots */
.wcu-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 12px 0 15px;
}

.wcu-dot {
    width: 7.5px;
    height: 7.5px;
    border-radius: 50%;
    flex-shrink: 0;
}

.wcu-dot.ring {
    background: transparent !important;
    outline: 1.5px solid #6e6e73;
    outline-offset: 1.5px;
}

/* Card body */
.wcu-body {
    padding: 0 20px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 12px;
}

.wcu-name {
    font-size: 22px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin-bottom: 9px;
}

.wcu-desc {
    font-size: 17px;
    color: #424245;
    line-height: 1.58;
    font-weight: 400;
    margin-bottom: 14px;
    flex: 1;
}

.wcu-meta {
    font-size: 15px;
    color: #1d1d1f;
    line-height: 1.4;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wcu-meta b {
    font-weight: 600;
}

.btn-primary:hover {
    background: #0094c0;
}

.wcu-meta .sub {
    color: #6e6e73;
    font-weight: 400;
}

/* Buttons */
.wcu-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.wcu-btn {
    background: #000000;
    color: #fff !important;
    border: none;
    border-radius: 980px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none !important;
    letter-spacing: -0.005em;
    line-height: 1.3;
    white-space: nowrap;
    display: inline-block;
    transition: background 0.15s;
}

.wcu-btn:hover {
    background: #0094c0;
}

.wcu-lnk {
    color: #0094c0 !important;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none !important;
    white-space: nowrap;
    transition: opacity 0.15s;
}

.wcu-lnk:hover {
    opacity: 0.72;
}

/* Mobile */
.wcu-arrows {
    display: none;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 20px;
}

.wcu-arrow-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.07);
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    color: #1d1d1f;
}

.wcu-arrow-btn:hover {
    background: rgba(0, 0, 0, 0.14);
}

@media (max-width: 1024px) {
    .wcu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .wcu-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .wcu-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 10px;
        scrollbar-width: none;
    }

    .wcu-grid::-webkit-scrollbar {
        display: none;
    }

    .wcu-card {
        min-width: 290px;
        scroll-snap-align: start;
    }

    .wcu-arrows {
        display: flex;
    }
}


/* ============================================================
   Closer Look Section  (.tcl-*)
   ============================================================ */
.tcl-wrap,
.tcl-wrap * {
    box-sizing: border-box;
}
.tcl-card{
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}
.tcl-left{
    padding: 52px 48px 52px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}
.tcl-right{
        position: relative;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    background: #e8e8ed;
}
.tcl-img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.04);
}
.tcl-wrap {
    background: #f5f5f7;
    padding: 144px 0 144px;
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.tcl-inner {
    margin: 0 auto;
    padding: 0 60px;
}

/* Section title */
.tcl-title {
    font-size: clamp(26px, 3.6vw, 48px);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.03em;
    line-height: 1.07;
    margin-top: 0px !important;
    margin-bottom: 3rem !important;
}

/* Banner card */
.tcl-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 6.2;
    background: #c8c8c8;
}

.tcl-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tcl-banner:hover .tcl-banner-img {
    transform: scale(1.02);
}

.tcl-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right,
            rgba(210, 210, 210, 0.92) 0%,
            rgba(210, 210, 210, 0.88) 22%,
            rgba(200, 200, 200, 0.55) 42%,
            rgba(190, 190, 190, 0.0) 62%);
    padding: 0 0 0 72px;
}

.tcl-text-block {
    max-width: 340px;
    text-align: center;
}

.tcl-headline {
    font-size: clamp(18px, 2vw, 30px);
    font-weight: 500;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 22px;
}

.tcl-cta {
    display: inline-block;
    background: rgba(29, 29, 31, 0.85);
    color: #f5f5f7 !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 400;
    font-family: inherit;
    letter-spacing: -0.01em;
    padding: 11px 26px;
    border-radius: 980px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.tcl-cta:hover {
    background: rgba(29, 29, 31, 1);
    transform: scale(1.03);
    color: #fff !important;
}

@media (max-width: 768px) {
    .tcl-banner {
        aspect-ratio: 4 / 3;
    }

    .tcl-overlay {
        padding: 0 0 0 28px;
        background: linear-gradient(to right,
                rgba(210, 210, 210, 0.95) 0%,
                rgba(210, 210, 210, 0.85) 35%,
                rgba(200, 200, 200, 0.3) 65%,
                transparent 100%);
    }

    .tcl-text-block {
        max-width: 260px;
    }
    .hero-footer h1 {
        font-size: 32px;
      }

      .hero-footer p {
        font-size: 16px;
      }
}

@media (max-width: 480px) {
    .tcl-banner {
        aspect-ratio: 1 / 1.1;
    }

    .tcl-overlay {
        align-items: flex-end;
        padding: 0 0 36px 0;
        background: linear-gradient(to top,
                rgba(29, 29, 31, 0.72) 0%,
                rgba(29, 29, 31, 0.4) 40%,
                transparent 70%);
        justify-content: center;
    }

    .tcl-text-block {
        max-width: 90%;
    }

    .tcl-headline {
        color: #fff;
    }

    .tcl-cta {
        background: rgba(255, 255, 255, 0.18);
    }
}


/* ============================================================
   Fleet Accordion Section  (.fac-*)
   ============================================================ */
.fac-wrap,
.fac-wrap * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.fac-wrap {
    background: #f5f5f7;
    padding: 144px 0 144px;
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #1d1d1f;
}

.fac-inner {
    margin: 0 auto;
    padding: 0 60px;
}

/* Section title */
.fac-title {
    font-size: clamp(28px, 3.8vw, 48px);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.03em;
    line-height: 1.07;
    margin-bottom: 32px;
}

/* Main card */
.fac-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

/* LEFT: Accordion panel */
.fac-left {
    padding: 52px 48px 52px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

/* Accordion item */
.fac-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.fac-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

/* Item header row */
.fac-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    gap: 16px;
    user-select: none;
}

.fac-item-title {
    font-size: 28px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.015em;
    line-height: 1.3;
    flex: 1;
}

/* Chevron icon */
.fac-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #6e6e73;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fac-item.active .fac-chevron {
    transform: rotate(180deg);
    color: #1d1d1f;
}

/* Item body (collapsible) */
.fac-item-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.3s ease;
    opacity: 0;
}

.fac-item.active .fac-item-body {
    max-height: 400px;
    opacity: 1;
}

.fac-item-body p {
    font-size: 17px;
    color: #424245;
    line-height: 1.65;
    font-weight: 400;
    padding-bottom: 22px;
}

/* RIGHT: Image panel */
.fac-right {
    position: relative;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    background: #e8e8ed;
}

.fac-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.04);
}

.fac-img.active {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 860px) {
    .fac-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .fac-right {
        height: 320px;
        border-radius: 0 0 20px 20px;
        order: -1;
    }

    .fac-left {
        padding: 36px 28px;
        border-right: none;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
}

@media (max-width: 480px) {
    .fac-right {
        height: 240px;
    }

    .fac-left {
        padding: 28px 20px;
    }

    .fac-item-title {
        font-size: 16px;
    }
}


/* ============================================================
   Promo Cards Section  (.prc-*)
   ============================================================ */
.prc-wrap,
.prc-wrap * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.prc-wrap {
    background: #fff;
    padding: 120px 0 50px;
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #1d1d1f;
}

.prc-inner {
    margin: 0 auto;
    padding: 0 60px;
}

/* Section heading row */
.prc-head {
    margin-bottom: 3rem;
    font-size: 17px;
    font-weight: 400;
    color: #1d1d1f;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.prc-head strong {
    font-weight: 600;
}

.prc-head span {
    color: #6e6e73;
}

/* Cards grid */
.prc-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    align-items: stretch;
}

/* Single card */
.prc-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 440px;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    height: 35rem;
}

.prc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

/* TEXT ZONE */
.prc-card-text {
    padding: 32px 26px 32px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    background-size: 20px 20px;
    gap: 12px;
    display: flex;
    flex-direction: column;
}

.prc-card-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    pointer-events: none;
}

.prc-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6e6e73;
    margin-bottom: 10px;
    display: block;
    position: relative;
    z-index: 1;
}

.prc-card-title {
    font-size: clamp(18px, 1.7vw, 22px);
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.022em;
    line-height: 1.22;
    position: relative;
    z-index: 1;
}

/* Divider */
.prc-divider {
    height: 1px;
    background: #e5e5ea;
    flex-shrink: 0;
}

/* IMAGE ZONE */
.prc-card-img {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.prc-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.prc-card:hover .prc-card-img img {
    transform: scale(1.06);
}

/* CTA link */
.prc-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #0071e3;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    padding: 14px 26px 18px;
    letter-spacing: -0.005em;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
    transition: opacity 0.15s;
    background: #ffffff;
}

.prc-card-cta::after {
    content: '›';
    font-size: 16px;
    line-height: 1;
    margin-top: -1px;
}

.prc-card-cta:hover {
    opacity: 0.7;
}

/* Accent color per card */
.prc-card:nth-child(1) .prc-eyebrow { color: #0071e3; }
.prc-card:nth-child(2) .prc-eyebrow { color: #bf4800; }
.prc-card:nth-child(3) .prc-eyebrow { color: #1d7a4f; }
.prc-card:nth-child(4) .prc-eyebrow { color: #6e3db5; }

@media (max-width: 1024px) {
    .prc-track {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .prc-inner {
        padding: 0 20px;
    }

    .prc-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 12px;
        scrollbar-width: none;
    }

    .prc-track::-webkit-scrollbar {
        display: none;
    }

    .prc-card {
        min-width: 288px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .prc-head {
        font-size: 15px;
    }
}


/* ============================================================
   Feature Cards Section  (.fcs-*)
   ============================================================ */
.fcs-wrap,
.fcs-wrap * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.fcs-wrap {
    background: #f5f5f7;
    padding: 144px 0 50px;
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #1d1d1f;
}

.fcs-inner {
    margin: 0 auto;
    padding: 0 60px;
}

/* Header */
.fcs-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 24px;
}

.fcs-title {
    font-size: clamp(28px, 3.6vw, 48px);
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.03em;
    line-height: 1.1;
    max-width: 600px;
}

.fcs-head-link {
    font-size: 17px;
    color: #0094c0;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.01em;
    flex-shrink: 0;
    transition: color 0.15s;
    padding-bottom: 4px;
}

.fcs-head-link:hover {
    color: #0094c0;
}

/* Cards grid */
.fcs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    align-items: stretch;
}

/* Single card */
.fcs-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    height: 30rem;
    position: relative;
    text-decoration: none;
    transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    gap: 12px;
}

.fcs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.1);
}

/* Icon */
.fcs-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
    flex-shrink: 0;
    color: #1d1d1f;
}

.fcs-icon svg {
    width: 100%;
    height: 100%;
}

/* Card title */
.fcs-card-title {
    font-size: clamp(19px, 1.7vw, 28px);
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.022em;
    line-height: 1.2;
    margin-bottom: 12px;
}

/* Card desc */
.fcs-card-desc {
    font-size: 17px;
    color: #6e6e73;
    line-height: 1.58;
    font-weight: 400;
    flex: 1;
}

/* Black circle button */
.fcs-plus {
    width: 36px;
    height: 36px;
    background: #1d1d1f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    flex-shrink: 0;
    align-self: flex-end;
    transition: background 0.18s, transform 0.18s;
    text-decoration: none;
}

.fcs-card:hover .fcs-plus {
    background: #3a3a3c;
    transform: scale(1.1);
}

.fcs-plus svg {
    width: 14px;
    height: 14px;
    color: #fff;
}

/* Prev/Next arrows */
.fcs-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 20px;
}

.fcs-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.07);
    border: none;
    cursor: pointer;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    color: #1d1d1f;
}

.fcs-arrow:hover {
    background: rgba(0, 0, 0, 0.14);
}

.fcs-arrow:disabled {
    opacity: 0.32;
    cursor: default;
}

@media (max-width: 1024px) {
    .fcs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fcs-arrows {
        display: none;
    }
}

@media (max-width: 600px) {
    .fcs-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .fcs-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 12px;
        padding-bottom: 4px;
    }

    .fcs-grid::-webkit-scrollbar {
        display: none;
    }

    .fcs-card {
        min-width: 272px;
        scroll-snap-align: start;
    }

    .fcs-arrows {
        display: flex;
    }
}