/* Import base styles from global.css */
@import url('global.css');

/* ========================================
   HOME PAGE SPECIFIC STYLES
   ======================================== */

/* Scoped tweaks for contact modal only */
.contact-modal .form-container {
  background: transparent;
  backdrop-filter: none;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.contact-modal .contact-details {
  margin-bottom: 1rem;
}

.contact-modal .form-row {
  display: grid;
  grid-template-columns: 1fr; /* stack fields vertically */
  gap: 1rem;
}

.contact-modal .form-submit {
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .contact-modal .form-row {
    grid-template-columns: 1fr; /* keep stacked on small/medium to stay compact */
  }
}
  
  .hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
  }
  
  @media (min-width: 1024px) {
    .hero-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .hero-title {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 3rem;
    color: var(--slate-800);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  @media (min-width: 1024px) {
    .hero-title {
      font-size: 3.625rem;
      line-height: 3.375rem;
    }
  }
  
  .hero-description {
    font-family: var(--font-inter);
    font-size: 1rem;
    color: var(--slate-600);
    margin-bottom: 2rem;
    line-height: 1.375rem;
    font-weight: 400;
    opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  @media (min-width: 640px) {
    .hero-buttons {
      flex-direction: row;
    }
  }
  
  .hero-image-container {
    display: flex;
    justify-content: center;
  }
  
  @media (min-width: 1024px) {
    .hero-image-container {
      justify-content: flex-end;
    }
  }
  
  .hero-image-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--blue-200);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 28rem;
    width: 100%;
  }
  
  .hero-image-wrapper {
    aspect-ratio: 16 / 9;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
  }
  
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-image-caption {
    font-family: var(--font-dm-sans);
    font-size: 0.875rem;
    color: var(--slate-500);
    text-align: center;
    font-weight: 500;
  }

  /* Hero animated states */
.hero-title.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  .hero-description.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  .hero-buttons.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  .hero-image-card.animate {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
  }

.section-subtitle {
    font-family: var(--font-inter);
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-weight: 400;
}

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

/* Features Strip */
.features-strip {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.3), rgba(219, 234, 254, 0.4));
    border-top: 1px solid rgba(191, 219, 254, 0.5);
    border-bottom: 1px solid rgba(191, 219, 254, 0.5);
}

.features-strip-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .features-strip-content {
        gap: 2rem;
    }
}

.features-strip .feature-item {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 1rem;
    color: var(--slate-700);
    white-space: nowrap;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    transition: none;
}

@media (min-width: 768px) {
    .features-strip .feature-item {
        font-size: 1.125rem;
    }
}

.feature-separator {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--blue-600);
    display: none;
}

@media (min-width: 768px) {
    .feature-separator {
        display: inline;
    }
}

/* Trust Signal Section */
.trust-section {
    padding: 3rem 1.5rem;
    background: linear-gradient(to bottom right, rgba(239, 246, 255, 0.3), white);
}

.trust-signal {
    font-family: var(--font-inter);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--slate-600);
    margin: 0;
    text-align: center;
}

/* Responsive Design for Mobile */
@media (max-width: 640px) {
    .features-strip {
        padding: 1.5rem 1rem;
    }
    
    .features-strip-content {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .feature-separator {
        display: none !important;
    }
    
    .trust-section {
        padding: 2rem 1rem;
    }
    
    .trust-signal {
        font-size: 1.125rem;
    }
}

/* Solutions Container - Alternating Layout */
.solutions-container {
    padding: 3rem 1.5rem;
    background-color: white;
}

.solution-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.solution-section:last-child {
    border-bottom: none;
}

.solution-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .solution-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.solution-content {
    max-width: none;
}

.solution-title {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--slate-800);
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .solution-title {
        font-size: 2.875rem;
    }
}

.solution-description {
    font-family: var(--font-inter);
    font-size: 1rem;
    color: var(--slate-600);
    margin-bottom: 2rem;
    line-height: 1.375rem;
}

/* Contact Details Styles */
.contact-details {
    display: grid;
    gap: 1.5rem;
    text-align: center;
  }
  
  .contact-item {
    padding: 1rem;
    background-color: rgba(239, 246, 255, 0.3);
    border-radius: 0.5rem;
    border: 1px solid var(--blue-200);
    text-align: left;
  }
  
  .contact-item-title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--blue-600);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .contact-item-value {
    font-family: var(--font-inter);
    font-size: 1rem;
    color: var(--slate-800);
    margin: 0;
    line-height: 1.5;
  }

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid var(--blue-200);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(20px);
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.feature-title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--slate-800);
    margin: 0;
    line-height: 1.4;
}

.feature-badge {
    font-family: var(--font-inter);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue-600);
    background-color: rgba(37, 99, 235, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    white-space: nowrap;
    flex-shrink: 0;
}

.feature-description {
    font-family: var(--font-inter);
    font-size: 0.875rem;
    color: var(--slate-600);
    line-height: 1.6;
    margin: 0;
}

/* Solution Images */
.solution-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-img {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--slate-200);
    transition: transform 0.3s ease;
}

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

.solution-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design for Solutions */
@media (max-width: 640px) {
    .solutions-container {
        padding: 2rem 1rem;
    }
    
    .solution-section {
        padding: 3rem 0;
    }
    
    .solution-title{
        font-size: 2rem;
    }
    
    .solution-description {
        font-size: 1.125rem;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
    
    .feature-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .feature-badge {
        align-self: flex-start;
    }
    
    .solution-img {
        min-height: 200px;
        max-height: 300px;
    }
}

/* Focus states for accessibility */
.feature-item:focus-within {
    outline: 2px solid var(--blue-600);
    outline-offset: 2px;
}

/* AI Features Section - Special Layout */
.ai-features-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--slate-200);
}

.ai-features-container {
    max-width: none;
}

.ai-features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ai-features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .ai-features-grid {
        gap: 3rem;
        max-width: 1000px;
        margin: 0 auto;
    }
}

/* AI Features specific styling */
.ai-features-section .feature-item {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid var(--blue-200);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.ai-features-section .feature-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.ai-features-section .feature-header {
    margin-bottom: 1rem;
}

.ai-features-section .feature-title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--slate-800);
    margin: 0;
    line-height: 1.4;
}

.ai-features-section .feature-description {
    font-family: var(--font-inter);
    font-size: 0.9375rem;
    color: var(--slate-600);
    line-height: 1.6;
    margin: 0;
}

/* Print styles */
@media print {
    .features-strip,
    .trust-section {
        padding: 1rem 0;
    }
    
    .problem-card {
        border: 1px solid #000;
        box-shadow: none;
        background: white !important;
    }
    
    .hero-collage {
        display: block;
        height: auto;
    }
    
    .collage-main,
    .collage-item {
        position: static !important;
        margin-bottom: 1rem;
        transform: none !important;
        box-shadow: none !important;
        animation: none !important;
        width: 100% !important;
        height: auto !important;
    }
}

/* ==============================================
   HEADER + HERO – pixel-perfect overrides only
   ============================================== */

/* Nav: tighten links + Login pill */
.nav-links {
    gap: 2rem;
}

.nav-link {
    font-size: 0.93rem;
    font-weight: 500;
    color: #5b6470;
}

/* Logo: show TECHNOLOGIES small beside GSI */
.brand-name-container {
    flex-direction: column;
    gap: 0;
}

.brand-name {
    font-size: 1.55rem;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #1a2030;
}

.brand-name-2 {
    font-size: 0.48rem;
    letter-spacing: 0.13em;
    font-weight: 600;
    color: #9199a8;
    text-transform: uppercase;
}

/* Hero */
.hero-section {
    padding: 3.2rem 1.5rem 3rem;
    background: #fff;
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 4rem 1.5rem 3.6rem;
    }
}

.hero-blue  { color: #1884e8; }
.hero-purple { color: #7040d0; }

/* Buttons */
.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
    border-radius: 999px;
    height: 2.6rem;
    padding: 0 1.4rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
}

.hero-buttons .btn-outline {
    border-width: 1.5px;
}

/* Hero image */
.hero-collage {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;
}

.collage-main {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    overflow: hidden;
}

.collage-image-main {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ===== Problems We Solve – pixel-perfect ===== */
.prob-accent { color: #6f3fcf; }

.problems-section {
    padding: 2.5rem 1.5rem 3rem;
    background: #fff;
}

.problems-section .max-w-5xl {
    background: #f2f0f9;
    border-radius: 10px;
    padding: 2rem 2rem 1.8rem;
}

.problems-section .section-title {
    font-size: 2.875rem;
    line-height: 3rem;
    font-weight: 700;
    color: #1a1f2e;
    letter-spacing: -0.03em;
    margin-bottom: 0.35rem;
}

.problems-section .section-subtitle {
    font-family: var(--font-inter)!important;
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0;
}

.problems-grid {
    margin-top: 2.25rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

/* Reset card to match design */
.problem-card {
    position: relative;
    background: #fff;
    border: 1px solid #ebebf0;
    border-radius: 8px;
    padding: 1.2rem 3.6rem 1.2rem 1.2rem;
    text-align: left;
    box-shadow: none;
    min-height: 7.5rem;
    /* override animation initial state */
    opacity: 1;
    transform: none;
}

.problem-card.animate { opacity: 1; transform: none; }
.problem-card:hover { transform: none; box-shadow: none; }

.problem-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: #f4f0fd;
    border: 1px solid #e0d8f8;
    color: #6f3fcf;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.problem-icon svg { width: 1rem; height: 1rem; }

.problem-hero {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1f2e;
    line-height: 1.625rem;
    margin-bottom: 0.45rem;
}

.problem-subline {
    font-size: 1rem;
    color: #5f6673;
    font-weight: 400;
    line-height: 1.375rem;
    margin: 0;
}

/* Header */
.sol-header { margin-bottom: 2.2rem; }
.sol-blue { color: #1884e8; }
.sol-cta-btn {
    border-radius: 999px;
    height: 2.1rem;
    padding: 0 1.3rem;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
}

/* AI block */
.sol-ai { padding-bottom: 2.4rem; margin-bottom: 0; }
.sol-ai-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.6rem;
    align-items: start;
}
.sol-ai-cards { display: grid; gap: 0.9rem; }
.sol-ai-card {
    background: #F0F4FF;
    border-radius: 10px;
    padding: 1.75rem 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    min-height: 5.5rem;
}
.sol-ai-card-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5rem;
    color: #1a1f2e;
    margin: 0 0 0.75rem;
}
.sol-ai-card-text p {
    font-size: 1rem;
    color: #5f6a7a;
    line-height: 1.45;
    margin: 0;
}
.sol-ai-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ccd7f0;
    color: #1884e8;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sol-ai-icon svg { width: 1.1rem; height: 1.1rem; }
.sol-ai-title { padding-top: 0.3rem; }
.sol-ai-title h2 {
    font-size: 3rem;
    line-height: 0.97;
    letter-spacing: -0.03em;
    color: #1a1f2e;
    margin-bottom: 0.55rem;
}
.sol-ai-title p { font-size: 1rem; color: #6b7280; font-weight: 500; line-height: 1.375rem; font-family: var(--font-inter);}

/* Colored-panel blocks */
.sol-block { padding: 2.4rem 0; }
.sol-block:last-child { border-bottom: none; }
.sol-block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: #eef0f7;
    border-radius: 10px;
    overflow: hidden;
}
/* reverse variant keeps normal direction; HTML order controls side */

/* Colored panel */
.sol-panel {
    border-radius: 0;
    padding: 2rem 1.8rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.sol-panel--purple { background: linear-gradient(145deg, #7040d8 0%, #5a3de0 100%); }
.sol-panel--blue   { background: linear-gradient(145deg, #1a7fe0 0%, #109de8 100%); }
.sol-block-grid .sol-panel { border-radius: 10px 0 0 10px; }
.sol-block-grid .sol-features { border-radius: 0 10px 10px 0; }
.sol-block-grid--reverse .sol-panel { border-radius: 0 10px 10px 0; }
.sol-block-grid--reverse .sol-features { border-radius: 10px 0 0 10px; }
.sol-panel h2 {
    font-size: 2.875rem;
    line-height: 3rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.sol-panel > p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.72);
    margin: 0 0 0.8rem;
}

.sol-block-image {
    width: 100%;
    margin-top: auto;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

/* Mockup inside panel */
.sol-mock {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 52px 1fr;
    min-height: 160px;
}
.sol-mock-sidebar {
    background: #f1f2f6;
    border-right: 1px solid #e4e6ee;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px 6px;
}
.sol-mock-sidebar-dot {
    height: 6px;
    border-radius: 3px;
    background: #d0d4e0;
}
.sol-mock-sidebar-dot.active { background: #7040d8; width: 70%; }
.sol-mock-body {
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.sol-mock-title {
    height: 7px;
    width: 55%;
    border-radius: 4px;
    background: #d0d4e2;
    margin-bottom: 3px;
}
.sol-mock-line {
    height: 6px;
    border-radius: 3px;
    background: #e8eaf2;
}
.sol-mock-line.short { width: 65%; }
.sol-mock-line.med   { width: 80%; }
.sol-mock-chip {
    height: 18px;
    width: 90px;
    border-radius: 4px;
    background: #7040d8;
    margin-top: 4px;
    opacity: 0.85;
}

/* Plain feature list */
.sol-features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 2rem;
    background: #F6F6FF;
}
.sol-feat {
    padding: 1.3rem 0;
}
.sol-feat-divider {
    width: 64%;
    height: 1px;
    background: #e2e4ee;
    margin: 20px auto;

}
.sol-feat:first-child { padding-top: 0; }
.sol-feat:last-child  { border-bottom: none; padding-bottom: 0; }
.sol-feat h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1f2e;
    margin: 0 0 0.4rem;
    line-height: 1.5rem;
    max-width: 17.5rem;
}
.sol-feat p {
    font-size: 1rem;
    color: #5f6673;
    line-height: 1.375rem;
    margin: 0;
}

@media (max-width: 1023px) {
    .sol-ai-grid,
    .sol-block-grid { grid-template-columns: 1fr; }
    .sol-block-grid--reverse { direction: ltr; }
    .sol-ai-title h2 { font-size: 2rem; }
    .sol-panel h2 { font-size: 1.35rem; }
    .sol-features { padding: 1rem 1.1rem; }
}

@media (max-width: 768px) {
    .sol-ai-grid {
        display: flex;
        flex-direction: column-reverse;
    }
}

/* ===== Footer ===== */
.footer {
    background: #2f323b;
    border-top: 0;
}

.footer-main {
    padding: 2.8rem 1.5rem 1.7rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 2.2rem;
    align-items: start;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-title {
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 2.875rem;
    letter-spacing: -0.03em;
    margin-bottom: 0.6rem;
}

.footer-accent { color: #1890ee; }

.footer-subtitle {
    font-family: var(--font-inter)!important;
    color: #d8dbe2;
    font-size: 1.75rem;
    margin-bottom: 0.65rem;
    line-height: 2rem;
    font-weight: 700;
}

.footer .footer-subtitle {
    font-family: var(--font-inter) !important;
}

.footer-description {
    color: #e3e5ea;
    font-size: 1.04rem;
    line-height: 1.5;
    max-width: 36rem;
    margin-bottom: 1.2rem;
}

.footer-buttons {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0;
}

.footer-buttons .btn {
    border-radius: 999px;
    height: 2.35rem;
    padding: 0 1.25rem;
    font-size: 1rem;
    line-height: 1;
}

.footer-buttons .btn-primary {
    background: #ffffff;
    color: #2f323b;
    border: 1px solid #ffffff;
    box-shadow: none;
}

.footer-buttons .btn-primary:hover {
    background: #f3f4f7;
    color: #2f323b;
    transform: none;
}

.footer-buttons .btn-outline {
    color: #ffffff;
    border: 1.5px solid #ffffff;
    background: transparent;
}

.footer-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.footer-benefits {
    background: #ffffff;
    border: 1px solid #dfe3ea;
    border-radius: 8px;
    padding: 1.15rem 1.15rem 1rem;
    height: 100%;
}

.footer-section-title {
    color: #148ceb;
    font-size: 1.05rem;
    margin-bottom: 0.65rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    font-size: 0.95rem;
    color: #3a4250;
    line-height: 1.35;
    display: block;
}

.benefit-item span::before {
    content: "›";
    color: #148ceb;
    margin-right: 0.55rem;
    font-weight: 700;
}

.benefit-icon { display: none; }

.footer-bottom {
    border-top: 0;
    padding: 0.3rem 1.5rem 0.7rem;
    text-align: center;
}

.footer-copyright {
    color: #ffffff;
    font-size: 0.9rem;
}
