/*
Theme Name: Ewe Dictionary
Theme URI: https://eweworld09.org
Author: Frank Asiwornu
Description: Mobile-first trilingual Ewe dictionary theme.
Version: 1.0.0
License: GPL-2.0+
Text Domain: ewe-dict
*/

/* ==============================
   RESET & BASE
   ============================== */
html { box-sizing: border-box; font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 75px; }
*, *::before, *::after { box-sizing: inherit; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6; color: #2c3e50; margin: 0; padding: 0; background: #fff;
}
img { max-width: 100%; height: auto; }
a { color: #ffffff; text-decoration: none; }
a:hover { color: #d1d1d1; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Accessibility: visible focus indicators */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid #1e73be;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Remove default focus for mouse users */
:focus:not(:focus-visible) {
    outline: none;
}
/* ==============================
   SITE HEADER
   ============================== */
.site-header {
    background: #1e3c72;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

/* Branding */
.site-branding__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}

.site-branding__logo:hover {
    text-decoration: none;
}

.site-branding__icon {
    font-size: 1.5rem;
}

.site-branding__title {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Desktop Navigation */
.main-nav__list {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.main-nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.2s;
}

.main-nav__link:hover {
    background: rgba(255,255,255,0.1);
    text-decoration: none;
    color: #fff;
}

.main-nav__icon {
    font-size: 1.1rem;
}

/* ==============================
   MOBILE MENU TOGGLE
   ============================== */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle__bar {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Animate hamburger to X */
.mobile-menu-active .mobile-menu-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-active .mobile-menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-active .mobile-menu-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==============================
   MOBILE MENU OVERLAY
   ============================== */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay--visible {
    opacity: 1;
    visibility: visible;
}

/* ==============================
   MOBILE MENU PANEL
   ============================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #094e53;
    z-index: 1003;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.mobile-menu--open {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.mobile-menu__close {
    background: none;
    border: none;
    font-size: 2.4rem;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.mobile-menu__close:hover {
    background: #f3f4f6;
}

.mobile-menu__nav {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

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

.mobile-menu__item {
    border-bottom: 1px solid #f3f4f6;
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: #1e3c72;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: background 0.2s;
}

.mobile-menu__link:hover {
    background: #f0f4f8;
    text-decoration: none;
}

.menu-item a{
   padding: 20px 20px 20px 60px;
   font-weight: 700;
   font-size: 1.7rem;
}

.mobile-menu__icon {
    font-size: 1.2rem;
    width: 28px;
    text-align: center;
}

/* Prevent body scroll when menu is open */
.mobile-menu-active {
    overflow: hidden;
}

/* ==============================
   DESKTOP STYLES
   ============================== */
@media (min-width: 768px) {
    .mobile-menu-toggle,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }

    .main-nav__list {
        display: flex;
        gap: 20px;
    }

   .menu-item a{
      display: flex;
      padding: unset;
      font-weight: 700;
      font-size: 1.2rem;
   }

    
    .site-branding__title {
        font-size: 1.3rem;
    }
}

/* ==============================
   FOOTER
   ============================== */
.site-footer { background: #1e3c72; color: rgba(255,255,255,0.8); padding: 30px 20px; margin-top: 60px; text-align: center; }
.site-footer__inner { max-width: 1200px; margin: 0 auto; }
.site-footer a { color: rgba(255,255,255,0.6); }

/* Empty states */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.empty-state__icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.6;
}

.empty-state__title {
    font-size: 1.3rem;
    color: #374151;
    margin-bottom: 10px;
}

.empty-state__text {
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto 20px;
}

/* ==============================
   HERO
   ============================== */
.hero { background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); color: #fff; padding: 60px 20px 50px; text-align: center; }
.hero__content { max-width: 700px; margin: 0 auto; }
.hero__title { font-size: 2.2rem; margin: 0 0 15px; }
.hero__subtitle { font-size: 1.1rem; opacity: 0.9; margin-bottom: 30px; }
.hero__search { position: relative; display: flex; max-width: 550px; margin: 0 auto; }
.hero__input { flex: 1; padding: 16px 20px; font-size: 1.1rem; border: none; border-radius: 50px 0 0 50px; outline: none; }
/* Subtle focus indicator for search inputs */
.hero__input:focus,
.archive-search__input:focus,
.search-form__input:focus {outline: none; box-shadow: none; border-radius: 50px 0 0 50px; }
.hero__btn { background: #fff; border: none; border-radius: 0 50px 50px 0; padding: 0 25px; cursor: pointer; color: #1e3c72; font-size: 1.5rem; }
.hero__autocomplete { position: absolute; top: 100%; left: 0; right: 0; background: #fff; color: #333; list-style: none; margin: 5px 0 0; padding: 0; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); display: none; z-index: 200; overflow: hidden; }
.hero__autocomplete--visible { display: block; }
.hero__autocomplete-item a { display: block; padding: 12px 20px; color: #2c3e50; }
.hero__autocomplete-item a:hover { background: #f0f4f8; }

/* ==============================
   WORD CARDS (shared)
   ============================== */
.word-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 25px; }
.word-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.word-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08); border-color: #1e73be; transform: translateY(-2px); }
.word-card__link { display: block; padding: 25px 20px; text-decoration: none; color: inherit; }
.word-card__headword { font-size: 1.6rem; margin: 0 0 10px; color: #1e3c72; }
.word-card__tone { display: inline-block; background: #ebf4ff; color: #1e3c72; padding: 2px 10px; border-radius: 20px; font-weight: 600; margin-right: 8px; font-size: 0.8rem; }
.word-card__pos { font-style: italic; color: #4a5568; }
.word-card__dialect { display: inline-block; background: #f3f4f6; color: #6b7280; padding: 1px 6px; border-radius: 8px; font-size: 0.85em; margin-left: 5px; }
.word-card__meaning { margin: 8px 0 0; line-height: 1.4; color: #2d3748; }

/* ==============================
   SECTIONS (front page)
   ============================== */
.section { padding: 40px 20px; }
.section__container { max-width: 1100px; margin: 0 auto; }
.section__heading { font-size: 1.8rem; color: #1e3c72; text-align: center; margin-bottom: 30px; }
.section__footer { text-align: center; margin-top: 30px; }
.btn { display: inline-block; padding: 12px 30px; border-radius: 50px; font-weight: 600; text-decoration: none; cursor: pointer; border: none; }
.btn--primary { background: #1e3c72; color: #fff; }
.btn--primary:hover { background: #2a5298; text-decoration: none; }
.btn--secondary { background: #e5e7eb; color: #333; }

/* ==============================
   WORD OF THE DAY
   ============================== */
.wotd { background: #f4f6f9; text-align: center; padding: 40px 20px; }
.wotd__card { display: inline-block; background: #fff; padding: 25px 40px; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.04); text-decoration: none; color: #2c3e50; }
.wotd__card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08); text-decoration: none; }
.wotd__word { font-size: 2rem; font-weight: 700; color: #1e3c72; }
.wotd__tone { display: inline-block; background: #ebf4ff; color: #1e3c72; padding: 2px 10px; border-radius: 20px; font-size: 0.8rem; margin-left: 10px; }
.wotd__pos { font-style: italic; color: #4a5568; }
.wotd__meaning { font-size: 1.1rem; color: #2d3748; }
.wotd__ipa { font-family: "DejaVu Sans", "Arial Unicode MS", sans-serif; color: #666; }

/* ==============================
   SINGLE ENTRY
   ============================== */
.dict-entry { max-width: 900px; margin: 40px auto; padding: 0 20px; }
.dict-headword { display: flex; flex-wrap: wrap; align-items: center; gap: 15px; margin-bottom: 30px; }
.dict-headword__title { font-size: 2.8rem; font-weight: 700; color: #1e3c72; margin: 0; }
.dict-headword__play-btn { background: none; border: none; font-size: 2rem; cursor: pointer; color: #1e73be; }
.dict-headword__video { width: 100%; max-width: 400px; display: none; }
.dict-tone { background: #f8f9fa; border-left: 5px solid #1e73be; padding: 20px; margin-bottom: 25px; border-radius: 8px; }
.dict-tone__tag { display: inline-block; background: #1e73be; color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; padding: 2px 12px; border-radius: 20px; margin-bottom: 10px; }
.dict-tone__ipa { font-family: "DejaVu Sans", "Arial Unicode MS", sans-serif; font-size: 1.2rem; color: #555; margin-bottom: 10px; }
.dict-tone__audio audio { width: 100%; max-width: 400px; }
.dict-sense { margin: 15px 0; padding-left: 12px; border-left: 2px solid #ddd; }
.dict-sense__pos { font-style: italic; font-weight: 600; color: #1e3c72; }
.dict-sense__dialect { display: inline-block; background: #f3f4f6; color: #6b7280; padding: 1px 8px; border-radius: 10px; font-size: 0.9em; margin-left: 6px; }
.dict-sense__meaning { margin: 5px 0; }
.dict-sense__lang { font-weight: 600; color: #7f8c8d; margin-right: 4px; }
.dict-example { background: #f1f3f5; padding: 12px 15px; border-radius: 6px; margin: 10px 0 10px 20px; font-size: 0.95rem; }
.dict-example__sentence { display: block; font-weight: 500; }
.dict-example__trans { display: block; color: #666; font-size: 0.85rem; margin-top: 3px; }

/* Sense numbering */
.dict-sense__number {
    display: inline-block;
    font-weight: 700;
    color: #1e3c72;
    margin-right: 6px;
    font-size: 1.05em;
    min-width: 20px;
}

/* ==============================
   SEARCH / ARCHIVE PAGE
   ============================== */
.page-content { max-width: 1100px; margin: 40px auto; padding: 0 20px; }
.page-title { font-size: 2rem; color: #1e3c72; margin-bottom: 10px; }
.page-title__query { color: #1e73be; font-style: italic; }
.search-form { display: flex; max-width: 500px; gap: 10px; margin-bottom: 30px; }
.search-form__input { flex: 1; padding: 12px 16px; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; }
.search-form__btn { background: #1e3c72; color: #fff; border: none; padding: 12px 20px; border-radius: 8px; cursor: pointer; font-weight: 600; }
.no-results { text-align: center; padding: 40px 20px; }
.pagination { margin-top: 40px; text-align: center; }
.pagination .page-numbers { display: inline-block; padding: 8px 14px; margin: 0 3px; border: 1px solid #ddd; border-radius: 4px; color: #1e3c72; }
.pagination .page-numbers.current { background: #1e3c72; color: #fff; border-color: #1e3c72; }

/* ==============================
   DID YOU MEAN? SUGGESTIONS
   ============================== */
.suggestions {
    margin: 20px 0;
    padding: 20px;
    background: #fefce8;
    border: 1px solid #fde68a;
    border-radius: 8px;
    text-align: left;
    display: inline-block;
}

.suggestions__heading {
    font-weight: 600;
    color: #92400e;
    margin-bottom: 10px;
}

.suggestions__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suggestions__item {
    margin: 5px 0;
}

.suggestions__link {
    color: #1e73be;
    font-size: 1.1rem;
}

.suggestions__link:hover {
    text-decoration: underline;
}

/* Suggestion items in autocomplete */
.hero__autocomplete-item--suggestion a {
    color: #b45309 !important;
    font-style: italic;
}

/* ==============================
   SUGGEST FORM
   ============================== */
.suggest-page { max-width: 800px; margin: 40px auto; padding: 0 20px; }
.suggest-page__title { color: #1e3c72; font-size: 2rem; margin-bottom: 10px; }
.suggest-page__intro { color: #666; margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 5px; }
.form-group input, .form-group select { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 6px; font-size: 1rem; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.entry-block, .sense-block, .example-block { border: 1px solid #e5e7eb; padding: 20px; margin: 15px 0; border-radius: 8px; background: #f9fafb; }
.entry-block { border-left: 4px solid #1e73be; }
.sense-block { border-left: 4px solid #10b981; margin-left: 20px; }
.example-block { border-left: 4px solid #f59e0b; margin-left: 20px; }
.btn--small { padding: 5px 15px; font-size: 0.9rem; }
.btn--danger { background: #fee2e2; color: #dc2626; }
.message { margin-top: 20px; padding: 10px; border-radius: 6px; }
.message--success { color: #059669; background: #d1fae5; }
.message--error { color: #dc2626; background: #fee2e2; }
.message--info { 
    color: #1e40af; 
    background: #dbeafe; 
}
/* Loading spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #e5e7eb;
    border-top-color: #1e3c72;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Disable button while loading */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ==============================
   VIRTUAL KEYBOARD (above input)
   ============================== */
.ewe-kb {
    position: absolute;
    bottom: 100%;           /* Position ABOVE the input */
    left: 0;
    right: 0;
    background: #f8f9fa;
    padding: 6px;
    display: none;
    flex-wrap: wrap;
    z-index: 1000;
    justify-content: center;
    box-shadow: 0 -4px 8px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    border-radius: 8px 8px 0 0;
    margin-bottom: 4px;     /* Small gap between keyboard and input */
}

.ewe-kb button {
    margin: 3px;
    padding: 0.5px 0.5px;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 4px;
    min-width: 30px;
    cursor: pointer;
    transition: background 0.15s;
}

.ewe-kb button:hover {
    background: #e5e7eb;
}

.ewe-kb button:active {
    background: #d1d5db;
}

.ewe-kb-enabled {
    font-family: "DejaVu Sans", "Arial Unicode MS", sans-serif;
}
/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 600px) {
    .hero__title { font-size: 1.6rem; }
    .hero__input { padding: 14px 16px; font-size: 1rem; }
    .dict-headword__title { font-size: 2rem; }
    .word-grid { grid-template-columns: 1fr; }
}

/* Audio placeholder before lazy loading */
audio[data-loaded="false"] {
    opacity: 0.5;
    transition: opacity 0.3s;
}

audio[data-loaded="true"] {
    opacity: 1;
}


/* ==============================
   LEGAL & GUIDE PAGES
   ============================== */
.legal-page,
.guide-page {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.legal-page__title,
.guide-page__title {
    font-size: 2.2rem;
    color: #1e3c72;
    margin-bottom: 5px;
}

.legal-page__updated {
    color: #6b7280;
    margin-bottom: 30px;
    font-style: italic;
}

.guide-page__intro {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Legal sections */
.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.legal-section p,
.legal-section li {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-section ul {
    padding-left: 20px;
}

/* Guide sections */
.guide-section {
    margin-bottom: 40px;
    padding: 25px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.guide-section__icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.guide-section h2 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin: 0 0 15px;
}

.guide-section p,
.guide-section li {
    color: #374151;
    line-height: 1.7;
}

.guide-section ol {
    padding-left: 20px;
    margin-bottom: 10px;
}

.guide-section ol li {
    margin-bottom: 8px;
}

/* Feature blocks */
.guide-feature {
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #1e73be;
}

.guide-feature h3 {
    margin: 0 0 5px;
    color: #1e3c72;
    font-size: 1rem;
}

.guide-feature p {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
}

/* Tone badges */
.guide-tones {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.guide-tone {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.guide-tone--high { background: #fee2e2; color: #991b1b; }
.guide-tone--mid { background: #fef3c7; color: #92400e; }
.guide-tone--low { background: #dbeafe; color: #1e3c72; }
.guide-tone--rising { background: #d1fae5; color: #065f46; }
.guide-tone--falling { background: #ede9fe; color: #5b21b6; }

/* Keyboard display */
.guide-keyboard {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 15px 0;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    justify-content: center;
}

.guide-keyboard__char {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1.1rem;
    font-family: "DejaVu Sans", "Arial Unicode MS", sans-serif;
    color: #1e3c72;
    font-weight: 600;
}

/* FAQ */
.guide-faq {
    margin-bottom: 20px;
}

.guide-faq h3 {
    font-size: 1rem;
    color: #1e3c72;
    margin-bottom: 5px;
}

.guide-faq p {
    color: #6b7280;
    margin: 0;
    font-size: 0.95rem;
}

.site-footer__recaptcha {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 10px;
}

.site-footer__recaptcha a {
    color: rgba(255,255,255,0.7);
    text-decoration: underline;
}

.site-footer__recaptcha a:hover {
    color: #fff;
}

/* ==============================
   ABOUT PAGE
   ============================== */
.about-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero */
.about-hero {
    text-align: center;
    padding: 60px 0 40px;
}

.about-hero__title {
    font-size: 2.4rem;
    color: #1e3c72;
    margin-bottom: 10px;
}

.about-hero__subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    font-style: italic;
}

/* Sections */
.about-section {
    margin-bottom: 50px;
}

.about-section__icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.about-section h2 {
    font-size: 1.6rem;
    color: #1e3c72;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.about-section p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Features grid */
.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

@media (min-width: 600px) {
    .about-features {
        grid-template-columns: 1fr 1fr;
    }
}

.about-feature {
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s;
}

.about-feature:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.about-feature__icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 10px;
}

.about-feature h3 {
    font-size: 1.1rem;
    color: #1e3c72;
    margin: 0 0 8px;
}

.about-feature p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* CTA */
.about-cta {
    text-align: center;
    padding: 50px 0;
    background: #f0f4f8;
    margin: 0 -20px;
    padding: 50px 20px;
    border-radius: 16px;
}

.about-cta h2 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 10px;
}

.about-cta p {
    color: #6b7280;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.about-cta__thanks {
    font-style: italic;
    color: #1e3c72;
    font-weight: 500;
}