/* =====================================================
   GOCHI – BRAND VARIABLES
   ===================================================== */
:root {
  --gochi-orange: #ED553B;
  --gochi-blue: #274374;
  --white: #FFFFFF;
  --gray-light: #B0B8C1;
  --gray-dark: #4A5568;
  --gray-bg: #F8F9FA;
  --shadow-color: rgba(0, 0, 0, 0.05);

  --font-base: "Inter", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --font-heading: "Saira", system-ui, sans-serif;

  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --border-radius: 8px;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font-base); line-height: 1.65; color: var(--gray-dark); background: var(--white); }

/* YLEISET OTSIKOT (Oletuksena siniset) */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--gochi-blue); margin-top: 0; }

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; margin-top: var(--space-md); margin-bottom: var(--space-md); }
h3 { font-size: 1.6rem; }
p { margin-bottom: 1.2rem; margin-top: 0; }
p.hero-lead { font-family: var(--font-base); font-size: 1.5rem; font-weight: 400; color: var(--white); max-width: 600px; }

/* =====================================================
   BREADCRUMBS & NAVIGATION
   ===================================================== */
.breadcrumbs {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-dark);
}

.breadcrumbs a {
  color: var(--gochi-blue);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--gochi-orange);
}

.breadcrumbs i {
  font-size: 0.75rem;
  opacity: 0.5;
}

.container { max-width: 1200px; margin: 0 auto; padding: var(--space-lg) 1.5rem; }
.container.narrow { max-width: 820px; padding-bottom: var(--space-lg); }
.container.medium { max-width: 1000px; padding-bottom: var(--space-lg); }
.section-light { background-color: var(--gray-bg); }
section { position: relative; }
.margin-top-md { margin-top: var(--space-md) !important; }
.margin-top-lg { margin-top: var(--space-lg) !important; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.site-header { background: var(--gochi-blue); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px var(--shadow-color); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; position: relative; }
.logo-img { height: 60px; width: auto; display: block; transition: opacity 0.3s ease, transform 0.3s ease; }
.logo a { cursor: pointer; display: inline-block; }
.logo a:hover .logo-img { opacity: 0.9; transform: scale(1.05); }
.main-nav { display: flex; align-items: center; }
.main-nav a { margin-left: 1.8rem; text-decoration: none; font-weight: 600; color: var(--white); padding: 0.4rem 0; transition: opacity 0.2s ease; font-family: var(--font-heading); border-bottom: 2px solid transparent; }
.main-nav a:hover { opacity: 0.8; }
.main-nav a.active { border-bottom: 2px solid var(--gochi-orange); font-weight: 700; }
.nav-cta { padding: 0.5rem 1.5rem !important; background: var(--gochi-orange); color: var(--white); border-radius: var(--border-radius); transition: background 0.3s ease; font-weight: 700; flex-shrink: 0; margin: 0; font-family: var(--font-heading); }
.nav-cta:hover { background: #d44933; }
.nav-cta .icon { display: none; }

/* Hamburger Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* =====================================================
   HERO & BUTTONS (KORJATTU VÄRIKONFLIKTI)
   ===================================================== */
.hero { 
    background-color: var(--gochi-blue); 
    color: var(--white); 
    padding-top: 4rem; 
    padding-bottom: 4rem; 
    text-align: left; 
    position: relative; 
    overflow: hidden;
}

/* TÄMÄ KORJAA ONGELMAN: Pakotetaan otsikot valkoisiksi Hero-alueella */
.hero h1, 
.hero h2, 
.hero h3 {
    color: var(--white);
}

.hero-dark {
    /* Taustakerrokset: Grid, Hohde, Pohjaväri */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 90% 20%, rgba(237, 85, 59, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, var(--gochi-blue) 0%, #0f1e2e 100%);

    background-size: 
        50px 50px,   
        50px 50px,   
        100% 100%,   
        100% 100%;   

    background-position: center top;
    background-repeat: repeat, repeat, no-repeat, no-repeat;
}

/* =====================================================
   PAINIKKEET (BUTTONS)
   ===================================================== */
.button-primary, 
.button-secondary { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem; 
  padding: 0.8rem 2rem; 
  text-decoration: none; 
  font-weight: 700; 
  letter-spacing: 0.02em; 
  border-radius: var(--border-radius); 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  cursor: pointer; 
  font-family: var(--font-heading); 
  outline: none; 
  font-size: 1rem;
  min-width: 180px; /* Varmistetaan riittävä koko */
  line-height: 1;
}

/* PRIMARY (ORANSSI) */
.button-primary { 
  background: var(--gochi-orange); 
  color: var(--white); 
  border: 2px solid var(--gochi-orange); 
  box-shadow: 0 4px 6px rgba(237, 85, 59, 0.2);
}

.button-primary:hover { 
  background: #d44933; 
  border-color: #d44933;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(237, 85, 59, 0.3);
  color: var(--white);
}

/* SECONDARY (OUTLINE/VALKOINEN) */
.button-secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* HERO-VARIAATIO */
.button-hero {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

.button-primary i, .button-secondary i {
  transition: transform 0.3s ease;
  font-size: 0.9em;
}

.button-primary:hover i, .button-secondary:hover i {
  transform: translateX(4px);
}

.button-primary:focus, .button-secondary:focus { 
  box-shadow: 0 0 0 3px rgba(237, 85, 59, 0.5); 
}

/* MOBIILINAPIT */
@media (max-width: 768px) {
  .button-primary, .button-secondary { 
    width: 100%; 
    margin-top: 1rem; 
    padding: 0.8rem 1.5rem;
  }
}
.text-link { color: var(--gochi-blue); font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--gochi-blue); padding-bottom: 2px; }
.text-link:hover { border-bottom-color: var(--gochi-orange); color: var(--gochi-orange); }

/* =====================================================
   PAIN POINTS / GRID-OSIOT
   ===================================================== */
.section-pain {
    background-color: #F8F9FA;
    padding-top: 5rem;
    padding-bottom: 5rem;
    text-align: center;
}

.pain-header {
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.pain-header h2 {
    font-size: 2.5rem;
    color: var(--gochi-blue);
    margin-bottom: 1rem;
}

.pain-header p {
    font-size: 1.2rem;
    color: var(--gray-dark);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 4rem auto;
}

.pain-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(39, 67, 116, 0.1);
    border-color: var(--gochi-orange);
}

.pain-card i {
    font-size: 2rem;
    color: var(--gochi-orange);
    margin-bottom: 1.5rem;
    background: rgba(237, 85, 59, 0.1);
    padding: 12px;
    border-radius: 8px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gochi-blue);
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.pain-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-dark);
    margin: 0;
}

.promise-banner {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-left: 6px solid var(--gochi-orange);
    padding: 2rem;
    text-align: left;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.promise-banner strong {
    color: var(--gochi-blue);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* =====================================================
   PAIN-LAYOUT (OTA YHTEYTTÄ -SIVU)
   ===================================================== */
.pain-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

/* Ota yhteyttä -sivun 2x2 grid */
.pain-layout[style*="grid-template-rows"] {
    align-items: stretch;
}

.pain-layout[style*="grid-template-rows"] .pain-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pain-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    max-width: 100%;
}

.pain-text h2 { margin-bottom: 1.5rem; }
.pain-text p.lead-text { font-size: 1.15rem; color: var(--gray-dark); margin-bottom: 2rem; }
.pain-text .info-box { margin-top: auto; margin-bottom: 0; background: #fff; border: 1px solid #e2e8f0; }

/* Varmista että pain-grid täyttää koko korkeuden pain-layoutissa */
.pain-layout .pain-grid {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1.5rem;
    max-width: none;
    margin: 0;
}

.pain-layout .pain-grid .pain-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* =====================================================
   LISTS & INFO BOX
   ===================================================== */
.bullet-list { padding-left: 1.2rem; margin-top: 1rem; margin-bottom: var(--space-md); }
.bullet-list li { margin-bottom: 0.8rem; }
.bullet-list strong { color: var(--gochi-blue); }
.info-box { margin-top: var(--space-md); margin-bottom: var(--space-lg); padding: 1.6rem 1.8rem; border-left: 6px solid var(--gochi-orange); background: var(--gray-bg); font-weight: 500; border-radius: var(--border-radius); }

/* =====================================================
   LOMAKKEEN TYYLIT
   ===================================================== */
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="url"], .contact-form input[type="tel"], .contact-form textarea { width: 100%; padding: 0.8rem; margin-top: 0.5rem; border: 1px solid var(--gray-light); border-radius: var(--border-radius); font-family: var(--font-base); font-size: 1rem; }
.contact-form label { font-weight: 600; display: block; margin-top: 1rem; }
.contact-form p { margin-bottom: 1.5rem; }
.contact-form .button-primary { margin-top: 0.5rem; width: auto; }

/* =====================================================
   MODAL TYYLIT
   ===================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 1.5rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--gochi-blue);
    font-size: 2rem;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-dark);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    color: var(--gochi-orange);
    transform: rotate(90deg);
}

.modal-close:focus {
    outline: 2px solid var(--gochi-orange);
    outline-offset: 2px;
    border-radius: 4px;
}

.modal-content .contact-form {
    margin-top: 1rem;
}

.modal-content .contact-form .button-primary {
    width: 100%;
    margin-top: 1.5rem;
}

/* =====================================================
   GDF VISUAALINEN RUUDUKKO (KIINNI OLEVA TILA)
   ===================================================== */
.gdf-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: 3rem;
    text-align: center; 
}
.gdf-visual-box { padding: 1.5rem; border: 1px solid var(--gray-light); border-radius: var(--border-radius); background: var(--white); text-align: center; min-height: 150px; display: flex; flex-direction: column; justify-content: center; }
.gdf-visual-box i { font-size: 2.2rem; color: var(--gochi-orange); margin-bottom: 0.5rem; }
.gdf-visual-box h3 { font-size: 1.7rem; margin: 0; line-height: 1.2; color: var(--gochi-blue); font-family: var(--font-heading); }
.gdf-visual-box p { font-size: 0.9rem; font-weight: 700; margin-top: 0.4rem; color: var(--gochi-orange); line-height: 1.2; }
.gdf-buttons { display: none; }

/* =====================================================
   GDF AKORDIONIT (AVATTU TILA)
   ===================================================== */
.gdf-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: 3rem;
    text-align: left;
}
.gdf-grid-new > details { min-width: 0; }
.gdf-grid-new.hidden { display: none; }

/* YLEISET AKORDIONITYYLIT */
.accordion-item { background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--border-radius); margin-bottom: var(--space-md); padding: 1.5rem; transition: box-shadow 0.2s ease; text-align: left; position: relative; }
.accordion-item[open], .accordion-item:hover { box-shadow: 0 4px 12px var(--shadow-color); }

.accordion-item summary { display: block; cursor: pointer; list-style: none; padding: 0; margin-bottom: 0; position: relative; }
.accordion-item summary i.fa-icon { font-size: 1.6rem; color: var(--gochi-orange); display: block; margin-right: 0; margin-bottom: 0.5rem; vertical-align: top; }
.accordion-item summary h2 { font-size: 1.8rem; line-height: 1.2; margin: 0; padding: 0; text-align: left; display: block; color: var(--gochi-blue); }
.accordion-subtitle { display: block; font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--gochi-orange); margin-top: 0.2rem; margin-bottom: 0.5rem; line-height: 1.2; }

/* Keskitetty otsikko ja alaotsikko "Jatkuvan kehityksen polku" -osiossa */
.go-step summary i.fa-icon,
.dev-step summary i.fa-icon,
.flow-step summary i.fa-icon {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.go-step summary h2,
.dev-step summary h2,
.flow-step summary h2 {
    text-align: center;
}

.go-step .accordion-subtitle,
.dev-step .accordion-subtitle,
.flow-step .accordion-subtitle {
    text-align: center;
}

.go-step summary p.accordion-description,
.dev-step summary p.accordion-description,
.flow-step summary p.accordion-description {
    text-align: center !important;
}

.accordion-item summary p.accordion-description { font-size: 1rem; font-weight: 400; color: var(--gray-dark); line-height: 1.4; padding: 0; margin: 0; margin-top: 0.5rem; text-align: left; display: block; }

/* TASAUSKORJAUS (desktop only) */
@media (min-width: 900px) {
    .accordion-item summary p.accordion-description { min-height: 4rem; }
}

.accordion-content { padding-top: var(--space-sm); border-top: 1px solid var(--gray-bg); margin-top: var(--space-sm); text-align: left; }
.accordion-content .info-box { margin-top: 0; margin-bottom: 0; background: var(--white); border-left-color: var(--gochi-blue); text-align: left; }

/* =====================================================
   CTA & FOOTER
   ===================================================== */
.cta-section { background: var(--gochi-blue); color: var(--white); text-align: center; padding: 6rem 1.5rem; }
.cta-section h2, .cta-section p { color: var(--white); }
.cta-section h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.cta-section p { font-size: 1.25rem; margin-bottom: 2rem; }

.site-footer { text-align: center; padding: 3rem 1.5rem; font-size: 0.9rem; color: var(--gray-light); background: #0f1e2e; }
.site-footer .container { padding: 0; }
.site-footer p { margin: 0.5rem 0; }
.site-footer nav a { color: var(--gray-light); text-decoration: none; margin: 0 0.5rem; transition: color 0.2s ease; }
.site-footer nav a:hover { color: var(--gochi-orange); }

/* =====================================================
   MOBILE OPTIMIZATION
   ===================================================== */
@media (max-width: 900px) {
    .pain-layout { grid-template-columns: 1fr; gap: 3rem; }
    .pain-layout[style*="grid-template-rows"] { grid-template-rows: auto; }
    .pain-layout[style*="grid-template-rows"] > * { grid-column: 1 !important; }
    .pain-text { height: auto; }
    .pain-text .info-box { margin-top: 2rem; }
    .pain-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .gdf-grid-new, .gdf-visual-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h2 { margin-top: var(--space-md); margin-bottom: var(--space-sm); font-size: 1.75rem !important; }
  h3 { font-size: 1.3rem !important; }
  h4 { font-size: 1.1rem !important; }
  
  .nav-cta { padding: 0.6rem 1rem !important; width: 100%; text-align: center; margin-top: 0.4rem; }
  .logo-img { height: 40px; }
  .hero h1 { font-size: 1.75rem; line-height: 1.2; margin-bottom: 0.8rem; }
  .hero-lead { font-size: 1rem !important; margin-bottom: 0; }
  .container { padding: 2rem 1.2rem; }
  .hero .container { padding: 1.5rem 1.2rem; }
  .hero { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  
  /* Hamburger Menu Styles */
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-container {
    flex-direction: row;
    align-items: center;
    padding: 0.8rem 1.2rem;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--gochi-blue);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem 2rem;
    margin: 0;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
  }
  
  .main-nav.menu-open {
    right: 0;
  }
  
  .main-nav a {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    width: 100%;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .main-nav a.active {
    border-bottom: 2px solid var(--gochi-orange);
    padding-bottom: calc(0.8rem - 2px);
  }
  
  /* Overlay when menu is open */
  body.menu-open {
    overflow: hidden;
  }
  
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
  }
  
  .button-primary, .button-secondary { width: 100%; text-align: center; padding: 0.6rem 1.2rem; font-size: 0.95rem; margin-top: 1rem; }
  
  /* Section-pain pienennetty */
  .section-pain { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  
  /* Pain-header pienennetty */
  .pain-header { margin-bottom: 1.5rem; }
  .pain-header h2 { font-size: 1.75rem !important; margin-bottom: 0.8rem; }
  .pain-header p { font-size: 1rem; }
  
  /* Pain-grid pienennetty */
  .pain-grid { gap: 1.2rem; }
  
  /* Pain-card pienennetty */
  .pain-card { padding: 1.5rem; }
  .pain-card i { font-size: 1.5rem; margin-bottom: 1rem; width: 50px; height: 50px; padding: 10px; }
  .pain-card h4 { font-size: 1.1rem; margin-bottom: 0.6rem; }
  .pain-card p { font-size: 0.9rem; line-height: 1.5; }
  
  /* Promise-banner pienennetty */
  .promise-banner { padding: 1.5rem; margin-top: 2rem; }
  .promise-banner strong { font-size: 1rem; }
  .promise-banner p { font-size: 0.95rem; }
  
  /* CTA-section pienennetty */
  .cta-section { padding: 3rem 1.2rem; }
  .cta-section h2 { font-size: 1.75rem !important; margin-bottom: 0.8rem; }
  .cta-section p { font-size: 1rem; margin-bottom: 1.5rem; }
  
  /* Footer pienennetty */
  .site-footer { padding: 2rem 1.2rem; font-size: 0.85rem; }
  
  /* Info-box pienennetty */
  .info-box { padding: 1.2rem 1.4rem; margin-top: 1.5rem; margin-bottom: 1.5rem; }
  
  /* Accordion pienennetty */
  .accordion-item { padding: 1.2rem; }
  .accordion-item summary i.fa-icon { font-size: 1.3rem; margin-bottom: 0.8rem; }
  .accordion-item summary h2 { font-size: 1.5rem !important; }
  .accordion-subtitle { font-size: 0.9rem; }
  .accordion-item summary p.accordion-description { font-size: 0.9rem; }
}

/* =====================================================
   FOOTER SOCIAL LINKS
   ===================================================== */
.footer-social a {
  transition: opacity 0.2s ease;
}

.footer-social a:hover {
  opacity: 1 !important;
}