/** Shopify CDN: Minification failed

Line 458:0 All "@import" rules must come first
Line 547:0 All "@import" rules must come first
Line 746:2 Unexpected "{"
Line 746:3 Expected identifier but found "%"
Line 772:2 Unexpected "{"
Line 772:3 Expected identifier but found "%"
Line 806:0 All "@import" rules must come first
Line 1095:0 All "@import" rules must come first
Line 1312:0 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
.cp-apps-section {
    background-color: #0e1c4d;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
  }
  .cp-apps-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
  }
  .cp-apps-header {
    text-align: center;
    margin-bottom: 70px;
  }
  .cp-apps-title {
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Rajdhani', system-ui;
  }
  .cp-apps-subtitle {
    color: #cbd5e1;
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Grid Layout */
  .cp-apps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  @media (min-width: 768px) {
    .cp-apps-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Card Styling */
  .cp-app-card {
    background: #15245a;
    border: 1px solid #2d3b75;
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .cp-app-card:hover {
    border-color: #73aa02;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(115, 170, 2, 0.1);
  }

  /* Big Faint Icon in Background */
  .cp-app-bg-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    color: #ffffff;
    opacity: 0.04;
    transition: opacity 0.4s;
    pointer-events: none;
  }
  .cp-app-card:hover .cp-app-bg-icon {
    opacity: 0.08;
  }

  /* Functional Icon Box */
  .cp-app-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
  .cp-icon-green { background: #73aa02; }
  .cp-icon-blue { background: #2563eb; }

  .cp-app-card-title {
    color: #ffffff;
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Rajdhani', system-ui;
  }
  .cp-app-card-desc {
    color: #94a3b8;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
  }

  /* Bullet List */
  .cp-app-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }
  .cp-app-list-item {
    display: flex;
    align-items: center;
    color: #f1f5f9;
    font-size: 1rem;
    font-weight: 600;
  }
  .cp-app-list-item svg {
    color: #73aa02;
    margin-right: 12px;
    flex-shrink: 0;
  }

  /* Card Button */
  .cp-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #73aa02;
    color: #0e1c4d;
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    font-size: 0.875rem;
    box-shadow: 0 0 20px rgba(115, 170, 2, 0.4);
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
    width: 100%;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
  }
  .cp-card-btn:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  }

  @media (max-width: 640px) {
    .cp-app-card { padding: 40px 30px; }
  }
:root {
    --color-sodium-green: #73aa02;
    --color-sodium-dark: #0e1c4d;
  }

  .global-sales-section {
    background: #f8fafc;
    padding: 0;
  }

  /* HERO SECTION */
  .sales-hero {
    background: var(--color-sodium-dark);
    color: white;
    padding: 5rem 1.5rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
  }

  .sales-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(115, 170, 2, 0.08) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(115, 170, 2, 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.5;
    pointer-events: none;
  }

  .sales-hero-content {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
  }

  .sales-hero h1 {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--color-sodium-green);
  }

  .sales-hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    font-weight: 300;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* MAIN CHOICE SECTION */
  .sales-cards-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
  }

  .sales-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .sales-cards-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 4rem;
    }
  }

  .sales-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .sales-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  }

  /* Card 1: Quote (Dark Blue) */
  .sales-card-quote {
    border-top: 2px solid var(--color-sodium-dark);
  }

  .sales-card-quote:hover {
    border-color: var(--color-sodium-dark);
  }

  /* Card 2: Consultation (Green) */
  .sales-card-consultation {
    border: 2px solid var(--color-sodium-green);
  }

  .sales-card-consultation:hover {
    box-shadow: 0 25px 30px rgba(115, 170, 2, 0.2);
  }

  .sales-card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-sodium-green);
    color: var(--color-sodium-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .sales-card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
  }

  .sales-card-quote .sales-card-icon {
    background: rgba(14, 28, 77, 0.05);
  }

  .sales-card-quote:hover .sales-card-icon {
    background: var(--color-sodium-dark);
  }

  .sales-card-quote .sales-card-icon svg {
    color: var(--color-sodium-dark);
    width: 32px;
    height: 32px;
  }

  .sales-card-quote:hover .sales-card-icon svg {
    color: white;
  }

  .sales-card-consultation .sales-card-icon {
    background: rgba(115, 170, 2, 0.1);
  }

  .sales-card-consultation:hover .sales-card-icon {
    background: var(--color-sodium-green);
  }

  .sales-card-consultation .sales-card-icon svg {
    color: var(--color-sodium-green);
    width: 32px;
    height: 32px;
  }

  .sales-card-consultation:hover .sales-card-icon svg {
    color: var(--color-sodium-dark);
  }

  .sales-card h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-sodium-dark);
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
  }

  .sales-card p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
  }

  .sales-card-refund {
    background: rgba(115, 170, 2, 0.05);
    border: 1px solid rgba(115, 170, 2, 0.3);
    padding: 0.75rem;
    margin-bottom: 2rem;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-sodium-dark);
  }

  .sales-card-refund svg {
    width: 16px;
    height: 16px;
    color: var(--color-sodium-green);
    flex-shrink: 0;
  }

  .sales-card-btn {
    width: 100%;
    padding: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 16px;
    text-decoration: none;
  }

  .sales-card-quote .sales-card-btn {
    background: var(--color-sodium-dark);
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
  }

  .sales-card-quote .sales-card-btn:hover {
    background: #2d469c;
  }

  .sales-card-consultation .sales-card-btn {
    background: var(--color-sodium-green);
    color: var(--color-sodium-dark);
    clip-path: polygon(0 0, 95% 0, 100% 15%, 100% 100%, 0 100%);
  }

  .sales-card-consultation .sales-card-btn:hover {
    background: #8ec702;
  }

  @media (max-width: 768px) {
    .sales-hero {
      padding: 3rem 1.5rem;
      margin-bottom: 2rem;
    }

    .sales-hero h1 {
      font-size: 1.875rem;
    }

    .sales-hero p {
      font-size: 1rem;
    }

    .sales-cards-wrapper {
      padding: 0 1.5rem 2rem;
    }

    .sales-card {
      padding: 1.5rem;
    }

    .sales-card h2 {
      font-size: 1.5rem;
    }

    .sales-card p {
      font-size: 1rem;
    }
  }
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Rajdhani:wght@500;600;700&display=swap');

  :root {
    --color-sodium-green: #73aa02;
    --color-sodium-dark: #0e1c4d;
    --site-font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --site-font-heading: 'Rajdhani', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }

  .everstart-hero {
    background: #f8fafc;
    padding: 4rem 1.5rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .everstart-hero-title {
    font-family: var(--site-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-sodium-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-transform: none;
  }

  .everstart-hero-subtitle {
    font-family: var(--site-font-body);
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-weight: 400;
  }

  .everstart-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-family: var(--site-font-body);
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .feature-check {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-sodium-green);
    flex-shrink: 0;
    position: relative;
    top: 0.125rem;
  }

  .feature-check svg {
    width: 100%;
    height: 100%;
  }

  @media (max-width: 750px) {
    .everstart-hero {
      padding: 3rem 1rem;
    }

    .everstart-hero-title {
      font-size: 2rem;
    }

    .everstart-hero-subtitle {
      font-size: 1rem;
    }

    .everstart-features-list {
      gap: 0.75rem;
    }
  }
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Rajdhani:wght@500;600;700&display=swap');

  :root {
    --color-sodium-green: #73aa02;
    --color-sodium-dark: #0e1c4d;
    --site-font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --site-font-heading: 'Rajdhani', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }

  .everstart-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
  }

  /* CORE ADVANTAGES */
  .advantages-header {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
  }

  .advantages-header-bar {
    width: 4rem;
    height: 0.375rem;
    background: var(--color-sodium-green);
    margin-right: 1.5rem;
  }

  .advantages-title {
    font-family: var(--site-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-sodium-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
  }

  .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  }

  .advantage-card {
    background: white;
    border: 1px solid #cbd5e1;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  }

  .advantage-card:hover {
    border-color: var(--color-sodium-green);
  }

  .advantage-icon-bg {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1.5rem;
    opacity: 0.1;
    transition: opacity 0.3s ease;
  }

  .advantage-card:hover .advantage-icon-bg {
    opacity: 0.2;
  }

  .advantage-icon-bg svg {
    width: 120px;
    height: 120px;
    color: var(--color-sodium-dark);
  }

  .advantage-icon {
    width: 3rem;
    height: 3rem;
    color: var(--color-sodium-green);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
  }

  .advantage-title {
    font-family: var(--site-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-sodium-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
    line-height: 1.3;
  }

  .advantage-desc {
    font-family: var(--site-font-body);
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.8;
    position: relative;
    z-index: 10;
    font-weight: 400;
  }

  /* DEPLOYMENT APPLICATIONS */
  .applications-section {
    margin-top: 6rem;
    border-top: 2px solid #e2e8f0;
    padding-top: 4rem;
  }

  .applications-title {
    font-family: var(--site-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-sodium-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 4rem;
  }

  .applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
  }

  .application-card {
    position: relative;
    height: 360px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
    cursor: default;
  }

  .application-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }

  .application-card:hover .application-image {
    transform: scale(1.1);
  }

  .application-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14, 28, 77, 0.6) 0%, rgba(14, 28, 77, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: background-color 0.3s ease;
  }

  .application-card:hover .application-overlay {
    background: linear-gradient(to bottom, rgba(14, 28, 77, 0.55) 0%, rgba(14, 28, 77, 0.8) 100%);
  }

  .application-icon {
    width: 3rem;
    height: 3rem;
    color: var(--color-sodium-green);
    margin-bottom: 1.5rem;
    transform: translateY(1rem);
    transition: transform 0.3s ease 0s;
  }

  .application-card:hover .application-icon {
    transform: translateY(0);
  }

  .application-title {
    font-family: var(--site-font-heading);
    font-size: 1.625rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    transform: translateY(1rem);
    transition: transform 0.3s ease 0.075s;
    line-height: 1.3;
  }

  .application-card:hover .application-title {
    transform: translateY(0);
  }

  /* --- EDITOR PREVIEW STYLES --- */
  {% if section.settings.preview_mode == true %}
    .advantage-card {
      min-height: 200px;
    }
    .advantage-icon-bg svg {
      opacity: 0.15 !important;
    }
    .advantage-icon {
      opacity: 1 !important;
    }
    .application-card {
      min-height: 250px;
    }
    .application-image {
      background: #f3f4f6;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #9ca3af;
      font-size: 0.875rem;
      text-align: center;
      padding: 1rem;
    }
    .application-overlay {
      background: rgba(14, 28, 77, 0.7) !important;
    }
  {% endif %}

  @media (max-width: 750px) {
    .everstart-section {
      padding: 2rem 1rem;
    }

    .advantages-header {
      flex-direction: column;
      align-items: flex-start;
    }

    .advantages-header-bar {
      margin-right: 0;
      margin-bottom: 1rem;
    }

    .advantages-grid {
      grid-template-columns: 1fr;
    }

    .applications-grid {
      grid-template-columns: 1fr;
    }

    .advantages-title,
    .applications-title {
      font-size: 1.5rem;
    }

    .application-card {
      height: 320px;
    }
  }
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Rajdhani:wght@500;600;700&display=swap');

  :root {
    --color-sodium-green: #73aa02;
    --color-sodium-dark: #0e1c4d;
    --site-font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --site-font-heading: 'Rajdhani', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }

  .faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
  }

  .faq-header {
    font-family: var(--site-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-sodium-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
  }

  .faq-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: var(--color-sodium-green);
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-item {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease;
  }

  .faq-item:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-family: var(--site-font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-sodium-dark);
    background: white;
    position: relative;
    transition: background-color 0.2s ease;
  }

  .faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0.375rem;
    background: var(--color-sodium-green);
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .faq-item.active .faq-question::before {
    opacity: 1;
  }

  .faq-question:hover {
    background: #f1f5f9;
  }

  .faq-toggle {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-sodium-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: transform 0.2s ease;
  }

  .faq-item.active .faq-toggle {
    transform: rotate(45deg);
  }

  .faq-answer {
    padding: 0 1.5rem 1.5rem;
    font-family: var(--site-font-body);
    font-size: 1.5rem;
    color: #4b5563;
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
  }

  .faq-item.active .faq-answer {
    max-height: 1500px;
    padding: 1.5rem;
  }

  @media (max-width: 750px) {
    .faq-section {
      padding: 2rem 1rem;
    }

    .faq-header {
      font-size: 2rem;
    }

    .faq-question {
      font-size: 1.8rem;
      padding: 1rem;
    }

    .faq-toggle {
      width: 1.25rem;
      height: 1.25rem;
    }

    .faq-answer {
      font-size: 1.4rem;
      padding: 1rem;
    }
  }
:root {
    --color-sodium-green: #73aa02;
    --color-sodium-dark: #0e1c4d;
  }

  .core-advantages-section {
    margin-bottom: 8rem;
  }

  .advantages-header {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
  }

  .advantages-header-bar {
    width: 4rem;
    height: 0.375rem;
    background: var(--color-sodium-green);
    margin-right: 1.5rem;
  }

  .advantages-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: var(--color-sodium-dark);
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin: 0;
  }

  @media (min-width: 768px) {
    .advantages-title {
      font-size: 2.25rem;
      line-height: 2.5rem;
    }
  }

  .advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .advantages-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .advantages-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .advantage-card {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  .advantage-card:hover {
    border-color: var(--color-sodium-green);
  }

  .advantage-icon-bg {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1.5rem;
    opacity: 0.1;
    transition: opacity 0.2s ease;
  }

  .advantage-card:hover .advantage-icon-bg {
    opacity: 0.2;
  }

  .advantage-icon-bg svg {
    width: 120px;
    height: 120px;
    color: var(--color-sodium-dark);
  }

  .advantage-icon {
    width: 3rem;
    height: 3rem;
    color: var(--color-sodium-green);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
  }

  .advantage-icon svg {
    width: 100%;
    height: 100%;
  }

  .advantage-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-sodium-dark);
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }

  .advantage-desc {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.625;
    position: relative;
    z-index: 10;
    font-weight: 400;
  }

  @media (max-width: 768px) {
    .advantages-title {
      font-size: 1.5rem;
    }

    .advantage-card {
      padding: 1.5rem;
    }

    .advantage-title {
      font-size: 1.25rem;
    }

    .advantage-desc {
      font-size: 0.875rem;
    }
  }
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Rajdhani:wght@500;600;700&display=swap');

  :root {
    --color-sodium-green: #73aa02;
    --color-sodium-dark: #0e1c4d;
    --site-font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --site-font-heading: 'Rajdhani', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }

  .horizon-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
  }

  /* ADVANTAGES */
  .advantages-header {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
  }

  .advantages-header-bar {
    width: 4rem;
    height: 0.375rem;
    background: var(--color-sodium-green);
    margin-right: 1.5rem;
  }

  .advantages-title {
    font-family: var(--site-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-sodium-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
  }

  .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  }

  .advantage-card {
    background: white;
    border: 1px solid #cbd5e1;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  }

  .advantage-card:hover {
    border-color: var(--color-sodium-green);
  }

  .advantage-icon-bg {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1.5rem;
    opacity: 0.1;
    transition: opacity 0.3s ease;
  }

  .advantage-card:hover .advantage-icon-bg {
    opacity: 0.2;
  }

  .advantage-icon-bg svg {
    width: 120px;
    height: 120px;
    color: var(--color-sodium-dark);
  }

  .advantage-icon {
    width: 3rem;
    height: 3rem;
    color: var(--color-sodium-green);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
  }

  .advantage-title {
    font-family: var(--site-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-sodium-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
    line-height: 1.3;
  }

  .advantage-desc {
    font-family: var(--site-font-body);
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.8;
    position: relative;
    z-index: 10;
    font-weight: 400;
  }

  /* APPLICATIONS */
  .applications-section {
    margin-top: 6rem;
    border-top: 2px solid #e2e8f0;
    padding-top: 4rem;
  }

  .applications-title {
    font-family: var(--site-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-sodium-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 4rem;
  }

  .applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
  }

  .application-card {
    position: relative;
    height: 360px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
    cursor: default;
  }

  .application-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }

  .application-card:hover .application-image {
    transform: scale(1.1);
  }

  .application-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14, 28, 77, 0.6) 0%, rgba(14, 28, 77, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: background-color 0.3s ease;
  }

  .application-card:hover .application-overlay {
    background: linear-gradient(to bottom, rgba(14, 28, 77, 0.55) 0%, rgba(14, 28, 77, 0.8) 100%);
  }

  .application-title {
    font-family: var(--site-font-heading);
    font-size: 1.625rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    transform: translateY(1rem);
    transition: transform 0.3s ease 0.075s;
    line-height: 1.3;
  }

  .application-card:hover .application-title {
    transform: translateY(0);
  }

  @media (max-width: 750px) {
    .horizon-section {
      padding: 2rem 1rem;
    }

    .advantages-header {
      flex-direction: column;
      align-items: flex-start;
    }

    .advantages-header-bar {
      margin-right: 0;
      margin-bottom: 1rem;
    }

    .advantages-grid {
      grid-template-columns: 1fr;
    }

    .applications-grid {
      grid-template-columns: 1fr;
    }

    .advantages-title,
    .applications-title {
      font-size: 1.5rem;
    }

    .application-card {
      height: 320px;
    }
  }
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Rajdhani:wght@500;600;700&display=swap');

  :root {
    --color-sodium-green: #73aa02;
    --color-sodium-dark: #0e1c4d;
    --site-font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --site-font-heading: 'Rajdhani', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }

  .warranty-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
  }

  .warranty-header {
    font-family: var(--site-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-sodium-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
  }

  .warranty-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: var(--color-sodium-green);
  }

  .warranty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }

  @media (min-width: 751px) {
    .warranty-grid {
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: minmax(300px, auto);
    }
  }

  .warranty-card {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  }

  .warranty-card-title {
    font-family: var(--site-font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-sodium-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .warranty-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .warranty-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-family: var(--site-font-body);
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    position: relative;
  }

  .warranty-check {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-sodium-green);
    flex-shrink: 0;
    position: relative;
    top: 0.125rem;
  }

  .warranty-check svg {
    width: 100%;
    height: 100%;
  }

  @media (max-width: 750px) {
    .warranty-section {
      padding: 2rem 1rem;
    }

    .warranty-header {
      font-size: 1.5rem;
    }

    .warranty-card {
      padding: 1.5rem;
    }

    .warranty-card-title {
      font-size: 1.25rem;
    }

    .warranty-item {
      font-size: 1.25rem;
    }
  }
:root {
    --color-sodium-green: #73aa02;
    --color-sodium-dark: #0e1c4d;
    --font-heading: 'Rajdhani', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  }

  .technical-solution-section {
    background: #f8fafc;
  }

  /* HERO SECTION */
  .ts-hero {
    background: var(--color-sodium-dark);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .ts-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(to right, rgba(115,170,2,0.08) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(115,170,2,0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    pointer-events: none;
  }

  .ts-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
  }

  .ts-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: var(--font-heading);
  }

  .ts-hero h1 .green {
    color: var(--color-sodium-green);
    display: block;
  }

  .ts-hero p {
    font-size: 2.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
  }

  .ts-badge {
    display: inline-block;
    background: rgba(115,170,2,0.2);
    border: 2px solid var(--color-sodium-green);
    color: var(--color-sodium-green);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1.4875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* MAIN CONTAINER */
  .ts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
  }

  .ts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
  }

  @media (max-width: 768px) {
    .ts-grid {
      grid-template-columns: 1fr;
    }

    .ts-hero h1 {
      font-size: 2rem;
    }

    .ts-hero p {
      font-size: 1rem;
    }

    .ts-container {
      padding: 2rem 1rem;
    }
  }

  /* CARDS */
  .ts-card {
    background: white;
    padding: 2.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
  }

  .ts-card h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-sodium-dark);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    font-family: var(--font-heading);
  }

  .ts-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .ts-card li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    color: #475569;
    font-size: 1.80625rem;
    line-height: 1.6;
    border-bottom: 1px solid #f1f5f9;
  }

  .ts-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-sodium-green);
    font-weight: 700;
    font-size: 1.25rem;
  }

  .ts-card li:last-child {
    border: none;
  }

  /* STEPS */
  .ts-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .ts-step-num {
    width: 3rem;
    height: 3rem;
    background: var(--color-sodium-green);
    color: var(--color-sodium-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.91rem;
    flex-shrink: 0;
    font-family: var(--font-heading);
  }

  .ts-step h3 {
    font-weight: 700;
    color: var(--color-sodium-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
  }

  .ts-step p {
    font-size: 1.615rem;
    color: #64748b;
  }

  /* PRODUCT CARD */
  .ts-product-card {
    background: white;
    padding: 2rem;
    border: 2px solid var(--color-sodium-green);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: sticky;
    top: 2rem;
    height: fit-content;
  }

  .ts-product-card .price {
    font-size: 5.1rem;
    font-weight: 700;
    color: var(--color-sodium-green);
    text-align: center;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
  }

  .ts-product-card .subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.4875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
  }

  .ts-info-box {
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
  }

  .ts-info-label {
    font-weight: 700;
    color: var(--color-sodium-dark);
    text-transform: uppercase;
    font-size: 1.275rem;
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
  }

  .ts-info-text {
    font-size: 1.4875rem;
    color: #64748b;
  }

  .ts-product-card-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    font-size: 1.275rem;
    color: #94a3b8;
    text-align: center;
    line-height: 1.5;
  }

  /* FAQ */
  .ts-faq {
    background: white;
    padding: 2.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    margin-bottom: 4rem;
  }

  .ts-faq h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-sodium-dark);
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    font-family: var(--font-heading);
  }

  .ts-faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
  }

  .ts-faq-item:last-child {
    border: none;
  }

  .ts-faq-q {
    font-weight: 700;
    font-size: 1.91rem;
    color: var(--color-sodium-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
  }

  .ts-faq-a {
    color: #475569;
    line-height: 1.8;
    font-size: 1.615rem;
    display: block;
    margin-top: 1rem;
  }

  .ts-faq-item.active .ts-faq-a {
    max-height: 500px;
  }

  /* CTA */
  .ts-cta {
    background: linear-gradient(to right, var(--color-sodium-dark), #1a2858);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 0.75rem;
    margin-bottom: 4rem;
  }

  .ts-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    font-family: var(--font-heading);
  }

  .ts-cta h2 .green {
    color: var(--color-sodium-green);
  }

  .ts-cta h2 .white {
    color: white;
  }

  .ts-cta p {
    font-size: 1.91rem;
    color: #cbd5e1;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  @media (max-width: 750px) {
    .ts-card {
      padding: 1.5rem;
    }

    .ts-card h2 {
      font-size: 1.7rem;
    }

    .ts-cta h2 {
      font-size: 2rem;
    }

    .ts-card li {
      font-size: 1.4rem;
    }
  }