:root {
    --bg: #ecf4ff;
    --bg-strong: #e4f0ff;
    --primary: #2f7df6;
    --primary-dark: #1e63d4;
    --text-main: #0f172a;
    --text-muted: #6b7280;
    --card-bg: #ffffff;
    --accent-green: #22c55e;
    --accent-yellow: #facc15;
    --accent-red: #ef4444;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.15);
    --radius-lg: 28px;
    --radius-xl: 32px;
    --radius-pill: 999px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at top left, #f5f9ff, #e5f0ff);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

/* ---------- HERO ---------- */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 40px 40px 60px;
    background: radial-gradient(circle at top left, #f4f8ff, #e6f1ff);
    border-radius: 40px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.7), transparent 55%);
    pointer-events: none;
}

.hero-left {
    position: relative;
    z-index: 1;
    flex: 1.2;
}

/* ΔΙΟΡΘΩΣΗ: Αφαίρεση ΟΛΟΥ του κώδικα για το παλιό, ψεύτικο λογότυπο */
/*
    Διαγράφουμε:
    .logo-icon, .drop-inner, .logo-icon::before, .drop-inner::before
    και τον παλιό κώδικα που είχες προσθέσει για background-image.
*/

.hero-logo {
    display: flex; /* Βεβαιώνει ότι η εικόνα και το κείμενο είναι δίπλα-δίπλα */
    align-items: center; /* Ευθυγραμμίζει κάθετα τα στοιχεία */
    gap: 10px; /* Προσθέτει ένα μικρό κενό μεταξύ εικόνας και κειμένου */
}

/* ------------------------------------------------------------- */
/* ΝΕΕΣ ΡΥΘΜΙΣΕΙΣ ΓΙΑ ΤΙΣ ΕΙΚΟΝΕΣ (όπως ορίστηκαν στο HTML) */
/* ------------------------------------------------------------- */

/* Ρύθμιση για το ΚΥΡΙΟ ΛΟΓΟΤΥΠΟ (newlogos.png) */
.logo-image {
    width: 50px; /* Λογικό μέγεθος για λογότυπο */
    height: 50px; 
    display: block; 
    border-radius: 50%; /* Για να φαίνεται κυκλικό */
    border: none;
}

/* Ρύθμιση για το Play Store Logo */
.logo-image2 {
    width: 140px; /* Μείωση μεγέθους για να ταιριάζει στο CTA */
    height: auto; 
    display: block; 
    border: none; 
}

/* Ρύθμιση για την εικόνα στο "smartphone" (Hero Right) */
.logo-image3 {
    width: 100%; /* Γεμίζει το phone-screen */
    height: 100%; 
    display: block;
    border: none;
    object-fit: contain; /* Καλύπτει το χώρο χωρίς να παραμορφώνεται */
}

/* Ρύθμιση για τις εικόνες των δευτερευουσών συσκευών */
.logo-image4 {
    width: 100%; 
    height: 100%; 
    display: block; 
    border: none; 
    border-radius: 28px; /* Ταιριάζει με το border-radius του .phone-secondary-screen */
    object-fit: contain;
}

.logo-text-main {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.logo-text-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.hero-title {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-title span.highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 460px;
}

.hero-subtitle + .hero-subtitle {
    margin-top: 4px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

/* Κατάργηση default στυλ από τον σύνδεσμο Play Store για να εμφανίζεται μόνο η εικόνα */
.header-logo-area a {
    box-shadow: none;
    background: transparent;
    padding: 0;
}

.btn {
    padding: 12px 26px;
    font-size: 15px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
        color 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 36px rgba(37, 99, 235, 0.55);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(148, 163, 184, 0.7);
    color: var(--text-main);
    box-shadow: 0 8px 20px rgba(148, 163, 184, 0.28);
    background-color: rgba(255, 255, 255, 0.75);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.btn-icon-circle {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.15);
}

.btn-secondary-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1.5px solid rgba(148, 163, 184, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.hero-right {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone {
    width: 280px;
    height: 540px;
    background: #f9fbff;
    border-radius: 46px;
    box-shadow: var(--shadow-soft);
    padding: 20px 16px;
    position: relative;
}

.phone::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.4);
}

.phone-screen {
    margin-top: 18px;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: #e5f4ff;
    position: relative;
}

/* Map-like grid (ΔΕΝ χρειάζεται πλέον, καθώς χρησιμοποιείται εικόνα) */
.map-grid {
    display: none;
}


/* ---------- SECTION TITLES ---------- */

.section {
    margin-top: 80px;
}

.section-title-center {
    text-align: center;
    margin-bottom: 26px;
}

.section-title-center h2 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}

.section-title-center p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ---------- FEATURES (phones) ---------- */

.features-phones {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    justify-items: center;
}

.phone-secondary {
    width: 250px;
    height: 480px;
    background: #f9fbff;
    border-radius: 40px;
    box-shadow: var(--shadow-soft);
    position: relative;
    padding: 18px 14px;
    overflow: hidden;
}

.phone-secondary::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.45);
}

.phone-secondary-screen {
    position: absolute;
    inset: 32px 10px 12px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #e3f0ff, #cbd9ff);
}

/* ---------- FEATURE TABS + CARDS ---------- */

.feature-tabs {
    margin-top: 72px;
    background: radial-gradient(circle at top, #f4f7ff, #e5f0ff);
    border-radius: 40px;
    padding: 26px 30px 30px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.tabs-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    padding-bottom: 12px;
}

.tab-item {
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 8px;
    cursor: pointer;
    position: relative;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.tab-item:hover {
    color: var(--primary);
}

.tab-item span.icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1.5px solid rgba(148, 163, 184, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.tab-item.active {
    color: var(--primary-dark);
}

.tab-item.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.tab-description {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 26px;
}

.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 18px 18px 20px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 140px;
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #e0edff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.feature-title {
    font-size: 15px;
    font-weight: 600;
}

.feature-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ΔΙΟΡΘΩΣΗ: Κανόνες για την εμφάνιση/απόκρυψη των περιεχομένων των καρτελών */

/* Απόκρυψη όλων των περιεχομένων καρτελών */
.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Εμφάνιση μόνο της ενεργής καρτέλας */
.tab-content.active {
    display: block;
    opacity: 1;
}


/* ---------- CTA SECTION ---------- */

.cta-section {
    margin-top: 72px;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.cta-section p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

.cta-buttons {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-large {
    padding: 14px 30px;
    font-size: 15px;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 960px) {
    .hero {
        flex-direction: column;
        padding: 32px 24px 40px;
    }

    .hero-right {
        order: -1;
    }

    .hero-title {
        font-size: 34px;
    }

    .features-phones {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .page-container {
        padding: 20px 14px 60px;
    }

    .hero {
        border-radius: 26px;
        padding: 24px 18px 32px;
        gap: 30px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .features-phones {
        grid-template-columns: minmax(0, 1fr);
    }

    .feature-tabs {
        padding: 22px 16px 24px;
    }

    .tabs-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .feature-card-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}.logo-image2 {
    width: 350px; 
    height: 140px; 
    display: block; /* Βοηθάει στην καλύτερη ευθυγράμμιση */
    border: none; /* Αφαιρεί το μπλε περίγραμμα (αν εμφανίζεται) */
}


/* Κανόνας για τις κάρτες που πρέπει να καταλαμβάνουν όλο το πλάτος */
.feature-card.single-card {
    /* grid-column: span 2; αναγκάζει το στοιχείο να καλύψει 2 στήλες */
    grid-column: span 2; 
}

