/* === Piraeus e-banking Login Page === */
/* Colors: dark green #002f30, gold #ffd900, beige #cac3af, light bg #f5f0e8 */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

@font-face {
    font-family: 'PiraeusSerif';
    src: url('../../fonts/PiraeusOpenSerif-Regular.74080c53f56b79f0.woff') format('woff');
    font-weight: normal;
}
@font-face {
    font-family: 'PiraeusSans';
    src: url('../../fonts/PiraeusOpenSans-Regular.a229865ec119b481.woff2') format('woff2'),
         url('../../fonts/PiraeusOpenSans-Regular.c1299c351f29484a.woff') format('woff');
    font-weight: normal;
}
@font-face {
    font-family: 'PiraeusSans';
    src: url('../../fonts/PiraeusOpenSans-Bold.8d7d1457556a4b73.woff2') format('woff2'),
         url('../../fonts/PiraeusOpenSans-Bold.30234c31def07fa0.woff') format('woff');
    font-weight: bold;
}

html { overflow-x: hidden; }
body {
    font-family: 'PiraeusSans', 'Roboto', Arial, sans-serif;
    color: #1e1e1e;
    background: #fff;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === HEADER === */
.site-header {
    background: #f8f6f3;
    padding: 0;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.logo { display: flex; align-items: center; padding: 20px 0; }
.logo img { height: 28px; }

/* Header Tools (nav icons) */
.header-tools {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    height: 70px;
}
.header-tools > li {
    font-size: 14px;
    line-height: 1.2;
    list-style: none;
    margin: 0;
    position: relative;
    height: 100%;
    cursor: pointer;
}
.header-tools > li > .header-link {
    background-color: #f8f6f3;
    color: #002f30;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
}
.header-tools > li > .header-link:hover .icon,
.header-tools > li > .header-link:hover .text { color: #406364; }
.header-tools > li .icon {
    color: #002f30;
    font-size: 24px;
    margin-right: 10px;
}
.header-tools > li .text {
    display: inline-block;
    vertical-align: middle;
    color: #002f30;
    font-size: 14px;
}
.header-tools > li > .header-link a {
    color: #002f30;
    text-decoration: none;
}
.header-tools > li > .header-link a:hover { color: #406364; }

/* Dropdown menus */
.header-tools-second {
    background-color: #f8f6f3;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    display: none;
    margin: 0;
    padding: 24px 32px;
    position: absolute;
    top: 100%;
    min-width: 300px;
    z-index: 200;
    list-style: none;
}
.header-tools-second.left { left: 0; }
.header-tools-second.right { right: 0; }
.header-tools-second.center { left: -50%; }
.header-tools > li:hover > .header-tools-second,
.header-tools > li:focus-within > .header-tools-second,
.header-tools > li:hover > .header-link + .header-tools-second,
.header-tools > li.open > .header-tools-second { display: block; }
.header-tools-second > li { margin: 0; }
.header-tools-second > li > a {
    color: #002f30;
    display: block;
    line-height: 24px;
    padding: 8px 0;
    text-decoration: none;
    font-size: 14px;
}
.header-tools-second > li > a:hover { color: #406364; }

/* Contact menu */
.header-tools-second.border-cols { min-width: 550px; font-size: 0; }
.header-tools-second.border-cols .col { display: inline-block; vertical-align: middle; width: calc(50% - 1px); }
.header-tools-second.border-cols .col1 { padding-right: 24px; }
.header-tools-second.border-cols .col2 { padding-left: 24px; }
.header-tools-second.border-cols .border { display: inline-block; vertical-align: middle; background: rgba(0,47,48,0.2); width: 1px; height: 60px; }
.contact-item { display: flex; align-items: center; gap: 12px; }
.contact-item .ic-email, .contact-item .ic-tilefono { font-size: 28px; color: #002f30; }
.contact-item a { color: #002f30; text-decoration: none; font-size: 14px; }
.contact-item a:hover { color: #406364; }
.contact-item .white { color: #002f30; font-size: 13px; }

/* loginType: desktop/mobile variants */
.loginType.mobile { display: none; }
.loginType.desktop { display: list-item; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #002f30;
    cursor: pointer;
}
/* === POPUP / LOADING OVERLAY === */
.popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9999;
    display: none;
}
.popup .bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #353535;
    opacity: 0.4;
}
.popup .content {
    background: #fff;
    border: 1px solid #d6d6d6;
    margin: 120px auto 0;
    padding: 32px;
    position: relative;
    width: 90%;
    max-width: 586px;
    border-radius: 4px;
}
.popup .close {
    position: absolute;
    top: 12px; right: 12px;
    cursor: pointer;
    font-size: 20px;
    color: #cc3333;
}
.popup .status {
    font-size: 20px;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.popup .status.error { color: #cc3333; }
.popup .status > span.ic {
    border: 2px solid #cc3333;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1.3;
    text-align: center;
    width: 42px; height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.popup p { color: #444; font-size: 15px; line-height: 1.5; margin: 0; }
.popup p.light { color: #666; }
.popup p a { color: #002f30; text-decoration: underline; }

/* === extraPIN popup === */
.extrapin-content {
    text-align: center;
    padding: 32px 40px;
    max-width: 520px;
}
.extrapin-content .close {
    color: #333;
    font-size: 18px;
}
.extrapin-title {
    font-size: 18px;
    font-weight: 700;
    color: #002f30;
    margin: 0 0 12px;
}
.extrapin-desc {
    font-size: 14px;
    color: #333;
    margin: 0 0 24px;
}
.extrapin-phone {
    margin: 0 auto 24px;
}
.extrapin-phone svg {
    display: block;
    margin: 0 auto;
}
.extrapin-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.extrapin-info {
    color: #002f30;
    border: 1.5px solid #002f30;
    border-radius: 50%;
    width: 24px; height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    cursor: help;
}
.extrapin-input {
    width: 120px;
    padding: 10px 12px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
}
.extrapin-input:focus {
    border-color: #002f30;
}
.extrapin-btn {
    padding: 10px 28px;
    background: #bbb;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: not-allowed;
    font-family: inherit;
    transition: background 0.2s;
}
.extrapin-btn.active {
    background: rgb(255, 217, 0);
    color: #002f30;
    cursor: pointer;
}
.extrapin-btn.active:hover {
    background: #e6c200;
}
.extrapin-error {
    color: #cc3333;
    font-size: 13px;
    margin: 10px 0 0;
    display: none;
}
.extrapin-input.error {
    border-color: #cc3333;
}

/* Loading spinner */
#divwait .three-quarters-loader {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
@keyframes three-quarters-loader {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.three-quarters-loader:not(:required) {
    animation: three-quarters-loader 1250ms infinite linear;
    border: 8px solid #ffd900;
    border-right-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    display: inline-block;
    overflow: hidden;
    text-indent: -9999px;
    width: 48px; height: 48px;
}

.header-line {
    height: 4px;
    background: linear-gradient(90deg, #ffd900 0%, #e6c200 100%);
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    background: #d8d0c0;
}
.slider-wrapper {
    position: relative;
    width: 100%;
    height: 524px;
    overflow: hidden;
}
.slides { position: relative; width: 100%; height: 100%; }
.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 60%);
}
.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}
.promo-card {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    max-width: 350px;
    border-radius: 2px;
    margin-left: 35%;
}
.promo-card h2 {
    font-family: 'PiraeusSerif', Georgia, serif;
    font-size: 24px;
    font-weight: normal;
    color: #1e1e1e;
    margin-bottom: 16px;
    line-height: 1.3;
}
.promo-card p {
    font-size: 14px;
    color: #444;
    margin-bottom: 24px;
    line-height: 1.6;
}
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}
.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}
.dot.active { background: #fff; }

/* === LOGIN BOX (original structure) === */
.col4.loginBox {
    position: absolute;
    top: 60px;
    right: 5%;
    width: 370px;
    z-index: 20;
}
.login-tabs, .tabs.login-tabs {
    width: 100% !important;
}
.tabs-header {
    list-style: none;
    display: flex;
    width: 100% !important;
}
.tabs-header li {
    flex: 1;
}
.tab-header {
    padding: 14px 16px;
    background: #003d3e;
    color: #b0c4b1;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
    font-family: inherit;
    border: none;
}
.tab-header.active {
    background: #002f30;
    color: #fff;
    font-weight: 600;
}
.tabs-content {
    background: #002f30;
}
.tabs-content .tab { display: none; }
.tabs-content .tab.active { display: block; }
.tabs-content-header-retail {
    padding: 14px 24px 6px;
}
.tabs-content-header-retail .title {
    color: #cac3af;
    font-size: 14px;
    font-family: 'PiraeusSans', sans-serif;
}
/* Login form fields */
#divform, #divform-qr {
    padding: 0 24px;
}
.loginPers .field {
    position: relative;
    margin-bottom: 4px;
}
.loginPers .field input.text {
    width: 100%;
    padding: 12px 40px 12px 40px;
    border: 1px solid #ccc;
    background: #fff;
    color: #1e1e1e;
    font-size: 14px;
    border-radius: 2px;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
}
.loginPers .field input.text::placeholder { color: #888; }
.loginPers .field input.text:focus {
    border-color: #002f30;
    box-shadow: 0 0 0 1px #002f30;
}
.loginPers .field .input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #cac3af;
    z-index: 2;
}
.loginPers .field .ic-username::before { content: ''; }
.loginPers .field .ic-password::before { content: ''; }
.loginPers .field .ic-username {
    width: 18px; height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='1.5'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}
.loginPers .field .ic-password {
    width: 18px; height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='1.5'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}
.loginPers .field .tooltip {
    position: relative;
}
.loginPers .field .input-tooltip {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.loginPers .field .input-tooltip .main {
    display: none;
    position: absolute;
    right: 0;
    top: 30px;
    background: #ffd900;
    color: #002f30;
    padding: 12px;
    font-size: 12px;
    width: 220px;
    border-radius: 4px;
    z-index: 100;
    line-height: 1.4;
}
.loginPers .field .input-tooltip:hover .main,
.loginPers .field .input-tooltip .open-tooltip:hover + .main {
    display: block;
}
.ic-info2.open-tooltip {
    color: #888;
    cursor: help;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 22px; height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    background: #fff;
}
.ic-info2.open-tooltip::before { content: 'ⓘ'; color: #888; }
.loginPers .field .focus-tooltip,
.loginPers .field .error-wrap,
.loginPers .field .tooltip.yellow.focus-tooltip { display: none; }
.loginPers a.info {
    display: block;
    color: #cac3af;
    font-size: 12px;
    text-decoration: none;
    margin-bottom: 14px;
    margin-top: 6px;
    padding: 0;
}
.loginPers a.info:hover { text-decoration: underline; }
input.submit, #loginBtn, #qrLoginBtn {
    width: 100%;
    padding: 14px;
    background: #ffd900;
    color: #002f30;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 2px;
    margin-top: 8px;
    margin-bottom: 8px;
    font-family: inherit;
    transition: background 0.2s;
    box-sizing: border-box;
}
input.submit:hover, #loginBtn:hover, #qrLoginBtn:hover { background: #ffe655; }
.loginlinksBox {
    padding: 12px 24px;
    color: #cac3af;
    font-size: 13px;
    background: #002f30;
    margin-top: 0;
}
.loginlinksBoxRetail {
    padding: 10px 24px;
}
.loginlinksBox + .loginlinksBox {
    box-shadow: inset 0 1px 0 0 #557475;
}
.loginlinksBox a.info {
    color: #cac3af;
    text-decoration: none;
    font-size: 13px;
}
.loginlinksBox a.info:hover { text-decoration: underline; }
.loginlinksBox span {
    color: #cac3af;
}
/* QR Login */
.grtimerwrap { text-align: center; padding: 8px 0; }
.qrLoginTimer { color: #cac3af; font-size: 18px; font-weight: bold; }
.qrpopup { text-align: center; padding: 10px 0; }
.qrLoginText { color: #cac3af; font-size: 13px; margin-bottom: 12px; }
.qrLoginImage { max-width: 180px; }
/* Error popup */
#errorpopup {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
}
#errorpopup .bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
}
#errorpopup .content {
    position: relative;
    max-width: 400px;
    margin: 100px auto;
    background: #fff;
    padding: 24px;
    border-radius: 4px;
    z-index: 1;
}
#errorpopup .close {
    text-align: right;
    cursor: pointer;
    font-size: 20px;
}
#errorpopup .status.error {
    color: #c00;
    font-weight: bold;
    margin-bottom: 12px;
}

/* === BUTTONS === */
.btn-primary {
    display: inline-block;
    background: #002f30;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-primary:hover { background: #004445; }
.btn-outline {
    display: inline-block;
    border: 2px solid #002f30;
    color: #002f30;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}
.btn-outline:hover {
    background: #002f30;
    color: #fff;
}

/* === SECTION TITLE === */
.section-title {
    font-family: 'PiraeusSerif', Georgia, serif;
    font-size: 32px;
    font-weight: normal;
    color: #002f30;
    margin-bottom: 24px;
    position: relative;
}
.section-title.light { color: #cac3af; }
.title-line {
    display: block;
    width: 40px;
    height: 3px;
    background: #ffd900;
    margin-top: 12px;
}

/* === NEWS SECTION === */
.news-section {
    background: #f5f0e8;
    padding: 60px 0;
}
.news-carousel { overflow: hidden; }
.news-track {
    display: flex;
    gap: 24px;
}
.news-card {
    min-width: calc(33.333% - 16px);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.news-badge {
    flex-shrink: 0;
    width: 60px; height: 60px;
    background: #002f30;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
}
.news-text h3 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 8px;
}
.news-text h3 a {
    color: #002f30;
    text-decoration: none;
}
.news-text h3 a:hover { text-decoration: underline; }
.news-text p {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}
.carousel-dots .dot {
    background: #002f30;
    opacity: 0.3;
}
.carousel-dots .dot.active { opacity: 1; }

/* === FAQ SECTION === */
.faq-section {
    background: #fff;
    padding: 60px 0;
}
.faq-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}
.faq-left { flex: 1; }
.faq-center {
    flex: 1;
    font-size: 15px;
    color: #002f30;
    line-height: 1.6;
}
.faq-right { flex-shrink: 0; }

/* === SECURITY SECTION === */
.security-section {
    background: #002f30;
    padding: 60px 0;
}
.security-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}
.security-text {
    flex: 1;
    color: #cac3af;
}
.security-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #cac3af;
}
.security-image {
    flex: 1;
    text-align: center;
}
.security-image img { max-width: 100%; height: auto; }

/* === APP SECTION === */
.app-section {
    background: #f5f0e8;
    padding: 60px 0;
}
.app-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}
.app-image {
    flex: 1;
    text-align: center;
}
.app-image img { max-width: 300px; height: auto; }
.app-text {
    flex: 1;
}
.app-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #444;
}

/* === FOOTER === */
.site-footer {
    background: #002f30;
    padding: 32px 0;
}
.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-left {
    display: flex;
    align-items: center;
    gap: 24px;
}
.iso-logo { height: 50px; }
.footer-links {
    list-style: none;
    display: flex;
    gap: 24px;
}
.footer-links a {
    color: #cac3af;
    text-decoration: none;
    font-size: 13px;
}
.footer-links a:hover { text-decoration: underline; }
.footer-right {
    text-align: center;
}
.footer-right p {
    color: #cac3af;
    font-size: 13px;
    margin-bottom: 12px;
}
.social-icons {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.social-icon {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

/* === CHAT BUTTON === */
.chat-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px; height: 56px;
    background: #ffd900;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-button:hover { background: #ffe655; }

/* === MOBILE === */
@media (max-width: 1100px) {
    /* Hide text labels, show only icons */
    .header-tools > li .text { display: none; }
    .header-tools > li .icon { margin-right: 0; }
    .loginType.desktop { display: none; }
    .loginType.mobile { display: list-item; }
}
@media (max-width: 1024px) {
    .col4.loginBox {
        position: static;
        width: 100%;
        max-width: 400px;
        margin: -40px auto 0;
        z-index: 20;
        position: relative;
    }
    .slider-wrapper { height: 400px; }
    .hero-section { padding-bottom: 0; }
    .promo-card { margin-left: 5%; }
}

@media (max-width: 768px) {
    /* Header: show only icons, hide text labels */
    .site-header .container { padding: 0 12px; }
    .header-tools > li .text { display: none; }
    .header-tools > li .icon { margin-right: 0; font-size: 20px; }
    .header-tools > li > .header-link { padding: 0 10px; }
    .header-tools { height: 50px; }
    .loginType.desktop { display: none; }
    .loginType.mobile { display: list-item; }
    .mobile-menu-btn { display: none; }
    /* Contact dropdown mobile */
    .header-tools-second.border-cols { min-width: 280px; }
    .header-tools-second.border-cols .col { width: 100%; display: block; }
    .header-tools-second.border-cols .col1 { padding: 0 0 12px; border-bottom: 1px solid rgba(0,47,48,0.15); margin-bottom: 12px; }
    .header-tools-second.border-cols .col2 { padding: 0; }
    .header-tools-second.border-cols .border { display: none; }
    .header-tools-second.center { left: auto; right: -50px; }
    .header-tools-second { padding: 16px; min-width: 230px; }

    /* Slider: full width, visible background image */
    .slider-wrapper { height: 350px; }
    .slide { background-position: center center; }
    .promo-card {
        padding: 20px 24px;
        max-width: 300px;
        margin-left: 16px;
        margin-top: 16px;
    }
    .promo-card h2 { font-size: 20px; }
    .promo-card p { font-size: 13px; margin-bottom: 16px; }
    /* Hide button text in mobile, show dropdown arrow */
    .promo-card .btn-primary {
        padding: 8px 20px;
        font-size: 13px;
    }

    /* Login box: full width, no side margins, flush under slider */
    .col4.loginBox {
        width: 100%;
        max-width: none;
        margin: 0;
        position: static;
    }
    .tabs-header li { flex: 1; }
    .tab-header {
        padding: 16px 12px;
        font-size: 15px;
        border: none;
    }
    .tabs-content-header-retail { padding: 16px 20px 8px; }
    #divform, #divform-qr { padding: 0 20px; }
    .loginlinksBox { padding: 14px 20px; }

    /* Slider dots: between slider and login */
    .slider-dots {
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        padding: 16px 0;
        background: #f5f0e8;
    }
    .dot { background: rgba(0,47,48,0.3); }
    .dot.active { background: #002f30; }

    /* Hero section adjustments */
    .hero-section {
        display: flex;
        flex-direction: column;
    }

    /* News */
    .news-track { flex-direction: column; }
    .news-card { min-width: 100%; }

    /* Other sections */
    .faq-grid { flex-direction: column; text-align: center; gap: 16px; }
    .security-grid { flex-direction: column; }
    .app-grid { flex-direction: column; }
    .footer-grid { flex-direction: column-reverse; gap: 24px; text-align: center; }
    .footer-left { flex-direction: column; }
    .section-title { font-size: 24px; }
}

@media (max-width: 480px) {
    .slider-wrapper { height: 280px; }
    .promo-card {
        max-width: calc(100% - 80px);
        padding: 16px 20px;
        margin-left: 12px;
    }
    .promo-card h2 { font-size: 18px; margin-bottom: 8px; }
    .promo-card p { font-size: 12px; margin-bottom: 12px; }
    .promo-card .btn-primary { padding: 8px 16px; font-size: 12px; }
    .tab-header { padding: 14px 8px; font-size: 14px; }
}
