/* your styles go here */
/* Example site test */

/* Logo theme switching */
.navbar-brand .logo-dark { display: none !important; }
.dark .navbar-brand .logo-light { display: none !important; }
.dark .navbar-brand .logo-dark { display: inline !important; }

@media (min-width: 992px) {
    body { font-size: 16px; }
    p { font-size: 16px; }
    .lead { font-size: 20px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }
    .navbar-nav > li > a { font-size: 15px; }
    .scroller-card-title { font-size: 18px; }
    .scroller-card-content { font-size: 16px; }
    .pricing-title-area h3 { font-size: 20px; }
    .pricing-price { font-size: 28px; }
    .pricing-features li { font-size: 16px; }
    .pricing-teaser { font-size: 15px; }
    .title-area h3 { font-size: 20px; }
    .title-area .teaser { font-size: 15px; }
    .box-simple h3 { font-size: 20px; }
    .box-simple p { font-size: 15px; }
    .see-more-feature p { font-size: 15px; }
    .pricing-section .pricing-title { font-size: 30px; }
    .integrations-section .group-title { font-size: 24px; }
    .see-more-title { font-size: 34px; }
    .see-more-lead { font-size: 18px; }
}

/* Force theme toggle visible on all screen sizes */
#theme-toggle {
    display: inline-block !important;
    margin-left: 5px;
}


@media (min-width: 768px) {
    #theme-toggle {
        display: inline-block !important;
    }
}

/* Reduce gap between adjacent white sections */
.bar.background-white + .bar.background-white {
    padding-top: 0;
}

.text-muted {
    color: #919090;
}
.dark .text-muted {
    color: #919090;
}

.lead {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.42857143;
    color: #555555;
    text-align: center;
}
.dark .lead {
    color: #c5c5c5;
}

@media (min-width: 768px) {
    .lead {
        font-size: 18px;
    }
}

.box-image-text .image {
    min-height: 190px;
    max-height: 190px;
}

.box-image-text .image img {
    max-height: 190px;
    margin: auto;
}

.box-simple {
    min-height: 230px;
}


/* Styling the SUMMARY element */
.custom-details summary {
    cursor: pointer;
    list-style: none; /* Hide default browser triangle/disc */
    padding-left: 20px; /* Space for the custom icon */
    position: relative;
}

/* Add the RIGHT arrow when closed */
.custom-details summary:before {
    content: "▶"; /* Right-pointing triangle */
    font-size: 1em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

/* Rotate the arrow DOWN when OPEN */
.custom-details[open] summary:before {
    transform: translateY(-50%) rotate(90deg);
}

/* Change Day/Night Mode */

/* Define default colors (light mode)
:root {
    --text-color: #333;
    --bg-color: #f8f8f8;
} */

/* Dark mode variables (when .dark class is active) */
.dark {
    --text-color: #f8f8f8;
    --bg-color: #434343;
    --pre-bg-color: #797979;
}

/* Apply colors to elements */
body {
    background: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
}

/* --- FIX: Target Sidebar Components in Dark Mode --- */
/* Target the main panel container */
.dark .panel-default {
    background-color: var(--panel-bg);
    border-color: var(--panel-border);
}

/* Target the panel header */
.dark .panel-heading {
    background-color: var(--panel-bg);
    border-color: var(--panel-border);
    color: var(--text-color); /* Ensure heading text is light */
}

/* Target the panel body */
.dark .panel-body {
    background-color: var(--panel-bg);
    color: var(--text-color);
}
/* Target the panel body */
.dark .sidebar-menu {
    background-color: var(--panel-bg);
    color: var(--text-color);
    border: #7c7c7c;
}


/* Target other common Bootstrap elements (if needed) */
.dark .form-control {
    background-color: var(--panel-bg);
    color: var(--text-color);
    border-color: var(--panel-border);
}

.dark .navbar-default {
    background-color: var(--bg-color);
    border-color: var(--panel-border);
}

.dark .bar {
    background-color: var(--bg-color);
    border-color: var(--panel-border);
    color: var(--text-color); /* Ensure heading text is light */
}

.dark h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
}
.dark .navbar-default .navbar-nav > li > a {
    color: var(--text-color);
}

.dark .btn-template-main {
  color: var(--text-color); 
  background-color: #7c7c7c;
  border-color: var(--text-color); 
}

.dark .btn-template-main .badge {
  color: #ffffff;
  background-color: var(--primary-accent);
}
.dark .btn-template-main:hover,
.dark .btn-template-main:focus,
.dark .btn-template-main:active,
.dark .btn-template-main.active {
  background: var(--primary-accent);
  color: #c5bfbf;
  border-color: var(--primary-accent);
}


.dark #blog-listing-medium .post h2 a {
  color: var(--text-color); 
}

.dark pre {
  color: #06bb00;
  background-color: black;
}

.dark .icon {
  color: var(--text-color);
  border-color: var(--text-color);
}

.dark h3 {
  color: var(--text-color);
}

.dark box-simple p {
  color: var(--pre-bg-color);
}

/* --- Custom CSS for Full-Width Image Cropping -- */
.full-width-image {
    /* Ensures the figure container itself takes up the available width */
    width: 100%;
    margin-left: 0;
    margin-right: 0; 
    /* You may need to adjust these margins depending on your theme's column structure */
}

.full-width-image img {
    /* Ensures the image maintains a fixed height and centers the content */
    display: block;
    width: 100%;
    
    /* Key properties for cropping */
    height: auto; /* This will be overridden by the inline style, but good practice */
    object-fit: cover; /* This centers the image and scales it to cover the element */
    object-position: center; /* Ensures the middle of the image is the focus */
}

/* Overwrite style.COLOUR.css Images hower to be 50% darker */
.customers .item img {
  display: inline-block;
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
  /* Firefox 10+, Firefox on Android */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(50%);
  /* Chrome 19+, Safari 6+, Safari 6+ iOS */
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/* Limiting Client.html section logos to be set height to avoid oversizing */
.customers .item img.img-responsive {
    max-height: 70px !important;
    height: 70px !important;
    width: auto !important;
    display: block;
    margin: 0 auto; /* For centering */
}

/* -- Custom CSS to decrease the size of the subtitle text -- */
.heading + p.lead {
    /* Adjust this value to your desired smaller size (e.g., 16px, 1em) */
    font-size: 16px !important;
}

/* --- CSS for Right-Aligned Footer Icons --- */

/* Style for individual icons (links) */
.footbar-icon-item {
    /* Set color for the icons */
    color: #999; 
    /* Remove default link decorations */
    text-decoration: none;
    padding: 0; 
    line-height: 1;
    /* Ensure only the icon is the clickable area */
    display: inline-block;
}

/* Style for the MDI icons themselves */
.footbar-icon-item i.mdi {
    /* Icon size */
    font-size: 20px;
    line-height: 1;
    transition: color 0.3s ease;
}

/* Hover effect: change color when the user hovers over an icon */
.footbar-icon-item:hover {
    color: #555;
}

/* Style for the vertical separator | */
.separator {
    /* Color of the separator */
    color: #ccc;
    /* Size of the separator text */
    font-size: 20px;
    line-height: 1;
}

/* * Optional: If the inline styling on <p class="pull-right"> is not working (display: flex; gap: 8px;),
* you may need to target the icons' parent specifically:
*/
.pull-right {
    /* Ensures items inside are displayed horizontally and centered vertically */
    display: flex; 
    align-items: center; 
    /* Creates space between each icon and separator */
    gap: 10px; 
}


/* -- Style for the MDI or Font Awesome icons themselves (change 20px to a larger value) -- */
.footbar-icon-item i.mdi,
.footbar-icon-item i.fas,
.footbar-icon-item i.fab {
    /* Current size is likely 20px based on previous examples */
    font-size: 17px; /* <-- INCREASE THIS VALUE (e.g., 24px, 28px, 2em) */
    line-height: 1;
    transition: color 0.3s ease;
}


/* -- Contact menu IM buttons --  */

/* Container Spacing */
.contact-im-grid {
    margin-top: 30px;
    margin-bottom: 30px;
}

/* The Box/Tile */
.contact-tile {
    display: block;
    background: #fdfdfd; /* Subtle off-white */
    border: 1px solid #eee;
    padding: 25px 10px;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
    margin-bottom: 20px; /* Space for mobile stacking */
}

/* Inner Layout */
.tile-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
}

/* Icon Styling */
.tile-inner i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

/* Text Label */
.tile-text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hover Effect: Lifts the tile and changes color */
.contact-tile:hover {
    background: #ffffff;
    border-color: #38b7ee; /* Your brand blue */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.contact-tile:hover .tile-inner {
    color: #38b7ee;
}

/* Dark Mode Support */
.dark .contact-tile {
    background: #3a3a3a;
    border-color: #444;
}

.dark .tile-inner {
    color: #f8f8f8;
}

.dark .contact-tile:hover {
    background: #444;
    border-color: #38b7ee;
}

/* Ensure 2x2 grid on very small mobile screens */
@media (max-width: 480px) {
    .contact-column {
        padding-left: 5px;
        padding-right: 5px;
    }
    .tile-inner i {
        font-size: 2rem;
    }
}

/* Topbar Column Widths */
#top .col-xs-7 {
    width: 30%;
}
#top .col-xs-5 {
    width: 65%;
}

#top .social a {
    color: #999999;
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    line-height: 24px;
    font-size: 12px;
    text-align: center;
    margin-left: 5px;
}

/* Pricing Grid Alignment - uses Bootstrap col-md-4 / col-sm-12 */
.pricing-grid {
    margin-top: 20px;
}

/* Base Tier Box Setup */
.pricing-box .box-inner {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Matches portal JS float timing */
}

/* Recess Tiers 1 & 3 to make them look hidden/secondary */
.tier-side .box-inner {
    opacity: 0.85;
    transform: scale(0.95);
    background: #fafafa;
}

/* Force Tier 2 to jump out in the middle */
.tier-center .box-inner.active-highlight {
    border: 2px solid #007aff; /* Apple Blue accent border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
    z-index: 2;
    opacity: 1;
    position: relative;
}

/* Popular Banner styling for the Center Box */
.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #007aff;
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Reuse the Portal JS 'Move Upwards' animation on hover */
.hover-animate:hover {
    transform: translateY(-12px) !important; /* Forces the upward lift from your JS */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    opacity: 1 !important;
}

/* Icons, Prices, and Layout elements */
.icon-wrap {
    color: #007aff;
    margin-bottom: 15px;
}
.pricing-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.pricing-box .price {
    font-size: 28px;
    color: #333;
}
.pricing-box .features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 14px;
    line-height: 2.2;
}

/* ============================================
   PRICING SECTION - Accordion Cards
   ============================================ */

.pricing-section .pricing-header { padding: 60px 0 40px; }
.pricing-section .pricing-header .lead.text-muted { margin: 0 auto; display: block; }
.pricing-section .pricing-title { font-size: 28px; font-weight: 700; color: #1d1d1f; margin-bottom: 12px; }
.dark .pricing-section .pricing-title { color: #f5f5f7; }

.pricing-card {
    background: #ffffff;
    border: 1px solid #e5e5e7;
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border-color: #d2d2d7;
}

.dark .pricing-card {
    background: #2d2d2d;
    border-color: #3a3a3c;
}
.dark .pricing-card:hover {
    border-color: #48484a;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.pricing-card.pricing-card-highlight {
    border: 2px solid #007aff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.dark .pricing-card.pricing-card-highlight {
    box-shadow: 0 10px 30px rgba(0,122,255,0.15);
}

.pricing-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
}

.pricing-icon-box {
    background: #f5f5f7;
    color: #007aff;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.pricing-icon-box.pricing-icon-highlight {
    background: #007aff;
    color: #ffffff;
}

.dark .pricing-icon-box {
    background: #3a3a3c;
    color: #64d2ff;
}
.dark .pricing-icon-box.pricing-icon-highlight {
    background: #007aff;
    color: #ffffff;
}

.pricing-title-area { flex-grow: 1; padding-right: 90px; }
.pricing-title-area h3 { font-size: 18px; font-weight: 600; margin: 0 0 4px 0; color: #1d1d1f; }
.dark .pricing-title-area h3 { color: #f5f5f7; }
.pricing-price { font-size: 26px; color: #1d1d1f; margin: 0 0 6px 0; }
.dark .pricing-price { color: #f5f5f7; }
.pricing-teaser { font-size: 14px; color: #86868b; margin: 0; line-height: 1.4; }
.dark .pricing-teaser { color: #98989d; }

.pricing-tier-tag {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}
.pricing-tier-tag { background: #e8f4ff; color: #007aff; }
.pricing-tier-popular { background: linear-gradient(135deg, #ffe398, #ffb500); color: #1a1a1a; font-weight: 700; }

.dark .pricing-tier-tag { background: #1a3a5c; color: #64d2ff; }
.dark .pricing-tier-popular { background: linear-gradient(135deg, #1a1a1a, #333333); color: #ffb500; }

.pricing-divider { border-color: #f5f5f7; margin: 16px 0; }
.dark .pricing-divider { border-color: #3a3a3c; }

.pricing-card-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.pricing-card.is-active .pricing-card-content {
    max-height: 500px;
    opacity: 1;
}

.pricing-features { list-style: none; padding: 0; margin: 0; }
.pricing-features li {
    font-size: 14px;
    color: #515154;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}
.dark .pricing-features li { color: #c7c7cc; }

.pricing-features li::before {
    content: "\2022";
    color: #007aff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}
.dark .pricing-features li::before { color: #64d2ff; }

.pricing-card-chevron {
    text-align: center;
    color: #86868b;
    font-size: 12px;
    margin-top: 10px;
    transition: transform 0.3s ease;
}
.dark .pricing-card-chevron { color: #98989d; }

.pricing-card.is-active .pricing-card-chevron {
    transform: rotate(180deg);
    color: #007aff;
}
.dark .pricing-card.is-active .pricing-card-chevron { color: #64d2ff; }

/* Desktop: cards always expanded */
@media (min-width: 769px) {
    .pricing-card-content {
        max-height: 500px;
        opacity: 1;
    }
    .pricing-card { cursor: default; }
    .pricing-card-chevron { display: none; }
    .pricing-tier-tag { position: absolute; }
    .pricing-title-area { padding-right: 90px; }
}

/* Mobile: accordion behavior */
@media (max-width: 768px) {
    .pricing-card { margin-bottom: 16px; }
    .pricing-title-area { padding-right: 0; }
    .pricing-tier-tag { position: relative; display: inline-block; margin-top: 8px; }
    .pricing-section .pricing-header { padding: 30px 0 20px; }
    .pricing-section .pricing-title { font-size: 22px; }
}


.integrations-section .header-spacer { padding: 60px 0 40px; }
.integrations-section .header-spacer .lead.text-muted { margin: 0 auto; display: block; }
.integrations-section .group-title { font-size: 22px; font-weight: 600; color: #1d1d1f; margin-bottom: 8px; padding-left: 5px; }
.dark .integrations-section .group-title { color: #f5f5f7; }

.integration-card {
    background: #ffffff;
    border: 1px solid #e5e5e7;
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border-color: #d2d2d7;
}

.dark .integration-card {
    background: #2d2d2d;
    border-color: #3a3a3c;
}
.dark .integration-card:hover {
    border-color: #48484a;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.card-header-main {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
}

.icon-box {
    background: #f5f5f7;
    color: #007aff;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.dark .icon-box {
    background: #3a3a3c;
    color: #64d2ff;
}

.title-area { flex-grow: 1; padding-right: 90px; }
.title-area h3 { font-size: 18px; font-weight: 600; margin: 0 0 6px 0; color: #1d1d1f; }
.dark .title-area h3 { color: #f5f5f7; }
.title-area .teaser { font-size: 14px; color: #86868b; margin: 0; line-height: 1.4; }
.dark .title-area .teaser { color: #98989d; }

.tier-tag {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}
.tier-all { background: #e8f4ff; color: #007aff; }
.tier-premium { background: linear-gradient(135deg, #ffe398, #ffb500); color: #1a1a1a; font-weight: 700; }

.dark .tier-all { background: #1a3a5c; color: #64d2ff; }
.dark .tier-premium { background: linear-gradient(135deg, #1a1a1a, #333333); color: #ffb500; }

.card-divider { border-color: #f5f5f7; margin: 16px 0; }
.dark .card-divider { border-color: #3a3a3c; }

.card-expanded-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.integration-card.is-active .card-expanded-content {
    max-height: 600px;
    opacity: 1;
}

.compatibility { font-size: 13px; color: #1d1d1f; margin-bottom: 12px; font-weight: 500; }
.dark .compatibility { color: #f5f5f7; }

.blueprint-list { list-style: none; padding: 0; margin: 0; }
.blueprint-list li {
    font-size: 14px;
    color: #515154;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}
.dark .blueprint-list li { color: #c7c7cc; }

.blueprint-list li::before {
    content: "\2022";
    color: #007aff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}
.dark .blueprint-list li::before { color: #64d2ff; }

.card-footer-chevron {
    text-align: center;
    color: #86868b;
    font-size: 12px;
    margin-top: 10px;
    transition: transform 0.3s ease;
}
.dark .card-footer-chevron { color: #98989d; }

.integration-card.is-active .card-footer-chevron {
    transform: rotate(180deg);
    color: #007aff;
}
.dark .integration-card.is-active .card-footer-chevron { color: #64d2ff; }

@media (max-width: 768px) {
    .integration-card { margin-bottom: 16px; }
    .title-area { padding-right: 0; }
    .tier-tag { position: relative; display: inline-block; margin-top: 8px; }
    .integrations-section .header-spacer { padding: 30px 0 20px; }
}

/* ============================================
   SEE MORE SECTION - Integrations CTA
   ============================================ */

.see-more-section {
    position: relative;
    height: 400px;
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.see-more-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.see-more-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 15, 40, 0.6);
    z-index: 1;
}
.see-more-section .container, .see-more-section .row {
    position: relative;
    z-index: 2;
}
.see-more-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}
.see-more-lead {
    font-size: 16px;
    color: #c5c5c5;
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.6;
}
.see-more-features { margin-bottom: 40px; }
.see-more-feature {
    padding: 20px 15px;
    color: #ffffff;
}
.see-more-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 122, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: #64d2ff;
}
.see-more-feature h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #ffffff;
}
.see-more-feature p {
    font-size: 14px;
    color: #98989d;
    margin: 0;
    line-height: 1.5;
}
.btn-see-more-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 16px;
}
.btn-see-more-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.4);
    color: #ffffff;
}
@media (max-width: 768px) {
    .see-more-section { padding: 50px 15px; margin-top: 30px; }
    .see-more-title { font-size: 24px; }
    .see-more-lead { font-size: 14px; margin-bottom: 30px; }
}

/* ============================================
   HORIZONTAL SCROLLER - Integrated Platforms
   ============================================ */

.horizontal-scroller {
    position: relative;
    display: flex;
    align-items: center;
    clear: both;
}

.horizontal-scroller__content {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #d2d2d7 transparent;
    width: 100%;
}

.horizontal-scroller__content::-webkit-scrollbar {
    height: 6px;
}

.horizontal-scroller__content::-webkit-scrollbar-track {
    background: transparent;
}

.horizontal-scroller__content::-webkit-scrollbar-thumb {
    background: #d2d2d7;
    border-radius: 10px;
}

.dark .horizontal-scroller__content::-webkit-scrollbar-thumb {
    background: #48484a;
}

.horizontal-scroller__nav-btn {
    position: absolute;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e5e7;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1d1d1f;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.dark .horizontal-scroller__nav-btn {
    background: #2d2d2d;
    border-color: #3a3a3c;
    color: #f5f5f7;
}

.horizontal-scroller__nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.horizontal-scroller__nav-btn--left {
    left: -20px;
}

.horizontal-scroller__nav-btn--right {
    right: -20px;
}

.scroller-card {
    min-width: 260px;
    max-width: 260px;
    background: #ffffff;
    border: 1px solid #e5e5e7;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
    flex-shrink: 0;
}

.dark .scroller-card {
    background: #2d2d2d;
    border-color: #3a3a3c;
}

.scroller-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.dark .scroller-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.scroller-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dark .scroller-card-img {
    background: #3a3a3c;
}

.scroller-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
}

.scroller-card-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    padding: 16px 16px 4px;
    line-height: 1.3;
}

.dark .scroller-card-title {
    color: #f5f5f7;
}

.scroller-card-content {
    display: block;
    font-size: 14px;
    color: #86868b;
    padding: 0 16px 20px;
    line-height: 1.5;
    letter-spacing: -0.1px;
}

.dark .scroller-card-content {
    color: #98989d;
}

@media (max-width: 768px) {
    .horizontal-scroller__nav-btn { display: none; }
    .scroller-card { min-width: 220px; max-width: 220px; }
    .horizontal-scroller__content { gap: 12px; padding: 10px 0 16px; }
}
