/*==============================================================
EAMS APPS
Premium Homepage CSS
Part 1
==============================================================*/


/*==============================
RESET
==============================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:Inter,Segoe UI,Roboto,Arial,sans-serif;

    background:#f7f9fc;

    color:#2b2d42;

    font-size:16px;

    line-height:1.7;

    overflow-x:hidden;

}


/*==============================
ROOT VARIABLES
==============================*/

:root{

--primary:#12c7a3;

--primary-dark:#09a181;

--secondary:#222633;

--accent:#ffb703;

--danger:#e63946;

--text:#2b2d42;

--text-light:#6b7280;

--border:#e5e7eb;

--bg:#f7f9fc;

--white:#ffffff;

--radius:18px;

--shadow:0 15px 40px rgba(0,0,0,.08);

--transition:.35s ease;

--container:1280px;

}


/*==============================
TYPOGRAPHY
==============================*/

h1,
h2,
h3,
h4,
h5{

font-weight:800;

color:var(--secondary);

line-height:1.2;

margin-bottom:15px;

}

h1{

font-size:58px;

}

h2{

font-size:42px;

}

h3{

font-size:26px;

}

p{

margin-bottom:18px;

color:var(--text-light);

}

a{

text-decoration:none;

color:var(--primary);

transition:.3s;

}

a:hover{

color:var(--primary-dark);

}


/*==============================
CONTAINER
==============================*/

.ea-container{

width:100%;

max-width:1240px;

margin:auto;

padding:0 20px;

}

section{

padding:90px 0;

position:relative;

}


/*==============================
SECTION HEADER
==============================*/

.ea-section-header{

text-align:center;

max-width:760px;

margin:0 auto 60px;

}

.ea-section-tag{

display:inline-block;

padding:8px 18px;

background:#e8fff9;

color:var(--primary-dark);

font-weight:700;

border-radius:40px;

margin-bottom:18px;

font-size:14px;

}

.ea-section-header h2{

margin-bottom:18px;

}

.ea-section-header p{

font-size:18px;

}


/*==============================
BUTTONS
==============================*/

.ea-btn,

.ea-btn-small{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

padding:15px 30px;

background:linear-gradient(135deg,var(--primary),var(--primary-dark));

color:#fff;

border-radius:12px;

font-weight:700;

transition:var(--transition);

box-shadow:0 10px 25px rgba(18,199,163,.25);

}

.ea-btn:hover,

.ea-btn-small:hover{

transform:translateY(-4px);

color:#fff;

}

.ea-secondary{

background:#fff;

color:var(--secondary);

border:2px solid var(--border);

box-shadow:none;

}

.ea-secondary:hover{

background:#f2f2f2;

}


/*==============================
PLACEHOLDER
==============================*/

.ea-placeholder{

display:flex;

align-items:center;

justify-content:center;

background:#eef2f7;

border:2px dashed #cfd8e3;

border-radius:18px;

font-weight:700;

color:#9aa4b2;

min-height:220px;

text-align:center;

padding:20px;

}


/*====================================================
HERO
====================================================*/

.ea-hero{

background:linear-gradient(180deg,#ffffff,#f6fbff);

padding:110px 0;

overflow:hidden;

}

.ea-hero-grid{

display:grid;

grid-template-columns:1.1fr .9fr;

gap:70px;

align-items:center;

}

.ea-hero h1{

margin:25px 0;

}

.ea-hero p{

font-size:18px;

margin-bottom:30px;

}

.ea-hero-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

margin-bottom:35px;

}


/*==============================
SEARCH
==============================*/

.ea-search-box{

margin:35px 0;

}

.ea-search-box form{

display:flex;

gap:12px;

}

.ea-search-box input{

flex:1;

height:58px;

border:1px solid var(--border);

border-radius:12px;

padding:0 20px;

font-size:16px;

background:#fff;

}

.ea-search-box button{

padding:0 28px;

border:none;

cursor:pointer;

background:var(--primary);

color:#fff;

border-radius:12px;

font-weight:700;

transition:.3s;

}

.ea-search-box button:hover{

background:var(--primary-dark);

}


/*==============================
HERO STATS
==============================*/

.ea-trust-row{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

margin-top:40px;

}

.ea-stat{

background:#fff;

border-radius:18px;

padding:25px;

box-shadow:var(--shadow);

text-align:center;

transition:.35s;

}

.ea-stat:hover{

transform:translateY(-8px);

}

.ea-stat strong{

display:block;

font-size:32px;

color:var(--primary);

margin-bottom:10px;

}

.ea-stat span{

color:var(--text-light);

font-size:15px;

}


/*==============================
HERO IMAGE
==============================*/

.ea-hero-image{

position:relative;

}

.ea-hero-image .ea-placeholder{

min-height:500px;

background:linear-gradient(135deg,#f3fbff,#eefef8);

}


/*====================================================
FEATURED APPS
====================================================*/

.ea-featured{

background:#fff;

}

.ea-app-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.ea-app-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:var(--shadow);

transition:var(--transition);

border:1px solid var(--border);

}

.ea-app-card:hover{

transform:translateY(-8px);

}

.ea-app-thumb .ea-placeholder{

min-height:220px;

border:none;

border-bottom:1px solid var(--border);

border-radius:0;

}

.ea-app-content{

padding:25px;

}

.ea-card-top{

display:flex;

justify-content:space-between;

margin-bottom:15px;

}

.ea-card-badge{

display:inline-block;

padding:6px 14px;

border-radius:40px;

background:#e7fff8;

font-size:13px;

font-weight:700;

color:var(--primary-dark);

}

.ea-card-date{

font-size:13px;

color:#888;

}

.ea-app-card h3{

font-size:24px;

margin-bottom:15px;

}

.ea-card-meta{

display:flex;

justify-content:space-between;

margin:25px 0;

font-size:14px;

color:#888;

}

.ea-card-buttons{

display:flex;

justify-content:space-between;

align-items:center;

gap:10px;

flex-wrap:wrap;

}


/*==============================
COMMON GRID
==============================*/

.ea-category-grid,

.ea-choice-grid,

.ea-guide-grid,

.ea-process-grid,

.ea-trust-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}


/*==============================
RESPONSIVE FOUNDATION
==============================*/

@media(max-width:1200px){

.ea-app-grid{

grid-template-columns:repeat(2,1fr);

}

.ea-category-grid,

.ea-choice-grid,

.ea-guide-grid,

.ea-process-grid,

.ea-trust-grid{

grid-template-columns:repeat(2,1fr);

}

.ea-trust-row{

grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:768px){

h1{

font-size:38px;

}

h2{

font-size:30px;

}

.ea-hero-grid{

grid-template-columns:1fr;

}

.ea-app-grid,

.ea-category-grid,

.ea-choice-grid,

.ea-guide-grid,

.ea-process-grid,

.ea-trust-grid,

.ea-trust-row{

grid-template-columns:1fr;

}

.ea-search-box form{

flex-direction:column;

}

.ea-search-box button{

height:55px;

}

.ea-hero{

padding:70px 0;

}

section{

padding:70px 0;

}

}





/*==============================================================
PART 2
Categories
Trust
Review Process
Latest Apps
==============================================================*/


/*====================================================
CATEGORIES
====================================================*/

.ea-categories{
    background:#fff;
}

.ea-category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.ea-category-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:var(--transition);
    box-shadow:var(--shadow);
    position:relative;
    overflow:hidden;
}

.ea-category-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--primary),var(--accent));
}

.ea-category-card:hover{
    transform:translateY(-10px);
}

.ea-category-card .ea-placeholder{
    min-height:90px;
    margin-bottom:20px;
}

.ea-category-card h3{
    margin-bottom:12px;
}

.ea-category-card p{
    font-size:15px;
}

.ea-category-count{
    display:inline-block;
    margin-top:18px;
    background:#eefaf7;
    color:var(--primary-dark);
    padding:8px 16px;
    border-radius:40px;
    font-weight:700;
}


/*====================================================
WHY TRUST US
====================================================*/

.ea-trust{
    background:#f8fbfd;
}

.ea-trust-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.ea-trust-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s;
}

.ea-trust-card:hover{
    transform:translateY(-8px);
}

.ea-trust-card .ea-placeholder{
    min-height:90px;
    margin-bottom:20px;
}

.ea-trust-card h3{
    margin-bottom:15px;
}

.ea-trust-footer{
    margin-top:70px;
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:var(--shadow);
    text-align:center;
}


/*====================================================
REVIEW PROCESS
====================================================*/

.ea-review-process{
    background:#fff;
}

.ea-process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.ea-process-item{

    position:relative;

    background:#fff;

    border-radius:22px;

    padding:35px;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    transition:.35s;

}

.ea-process-item:hover{

    transform:translateY(-10px);

}

.ea-process-number{

    position:absolute;

    right:25px;

    top:20px;

    font-size:42px;

    font-weight:900;

    color:#edf2f7;

}

.ea-process-item .ea-placeholder{

    min-height:90px;

    margin-bottom:25px;

}

.ea-process-item h3{

    margin-bottom:15px;

}

.ea-review-footer{

    margin-top:70px;

    background:#f8fbfd;

    border-radius:20px;

    padding:35px;

    text-align:center;

}


/*====================================================
LATEST APPS
====================================================*/

.ea-latest-apps{

    background:#f8fbfd;

}

.ea-app-card{

    position:relative;

}

.ea-app-card::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,var(--primary),var(--accent));

    transform:scaleX(0);

    transition:.35s;

}

.ea-app-card:hover::after{

    transform:scaleX(1);

}

.ea-app-thumb{

    overflow:hidden;

}

.ea-app-thumb .ea-placeholder{

    transition:.35s;

}

.ea-app-card:hover .ea-placeholder{

    transform:scale(1.05);

}

.ea-app-content h3 a{

    color:var(--secondary);

}

.ea-app-content h3 a:hover{

    color:var(--primary);

}

.ea-card-meta span{

    display:flex;

    align-items:center;

    gap:6px;

}

.ea-card-buttons{

    margin-top:25px;

}

.ea-card-buttons a:last-child{

    font-weight:600;

}


/*====================================================
INFO BOX
====================================================*/

.ea-info-box{

    display:grid;

    grid-template-columns:320px 1fr;

    gap:35px;

    align-items:center;

    margin-top:70px;

    background:#fff;

    padding:35px;

    border-radius:22px;

    box-shadow:var(--shadow);

}

.ea-info-box .ea-placeholder{

    min-height:220px;

}

.ea-info-box h3{

    margin-bottom:18px;

}


/*====================================================
COMMON LISTS
====================================================*/

.ea-check-list{

    list-style:none;

    margin:20px 0;

}

.ea-check-list li{

    padding:10px 0;

    color:var(--text);

    border-bottom:1px solid var(--border);

}

.ea-check-list li:last-child{

    border-bottom:none;

}


/*====================================================
LINK STYLES
====================================================*/

.ea-review-footer a,
.ea-guides-footer a,
.ea-install-footer a,
.ea-security-links a,
.ea-editorial-info a{

    font-weight:700;

}

.ea-review-footer a:hover,
.ea-guides-footer a:hover,
.ea-install-footer a:hover,
.ea-security-links a:hover,
.ea-editorial-info a:hover{

    text-decoration:underline;

}


/*====================================================
SECTION DIVIDER
====================================================*/

.ea-divider{

    width:100px;

    height:5px;

    background:linear-gradient(90deg,var(--primary),var(--accent));

    border-radius:50px;

    margin:25px auto;

}


/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:991px){

.ea-info-box{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.ea-category-card,
.ea-trust-card,
.ea-process-item{

padding:25px;

}

.ea-review-footer,
.ea-trust-footer{

padding:25px;

}

}




/*==============================================================
PART 3
Editor's Choice
Comparison Table
Installation
Security Center
==============================================================*/


/*====================================================
EDITOR'S CHOICE
====================================================*/

.ea-editors-choice{
    background:#ffffff;
}

.ea-choice-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.ea-choice-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.35s;
}

.ea-choice-card:hover{
    transform:translateY(-10px);
}

.ea-choice-image .ea-placeholder{
    min-height:220px;
    border:none;
    border-radius:0;
}

.ea-choice-content{
    padding:30px;
}

.ea-choice-content h3{
    margin:18px 0;
}

.ea-rating-bars{
    margin:30px 0;
}

.ea-rating{
    margin-bottom:20px;
}

.ea-rating span{
    display:flex;
    justify-content:space-between;
    font-size:14px;
    font-weight:700;
    margin-bottom:8px;
}

.ea-bar{
    width:100%;
    height:10px;
    background:#edf2f7;
    border-radius:30px;
    overflow:hidden;
}

.ea-fill{
    height:100%;
    background:linear-gradient(90deg,var(--primary),var(--accent));
    border-radius:30px;
}

.ea-pros-cons{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin:25px 0;
}

.ea-pros-cons div{
    background:#f8fbfd;
    padding:18px;
    border-radius:16px;
}

.ea-pros-cons ul{
    margin-top:12px;
    padding-left:18px;
}

.ea-pros-cons li{
    margin-bottom:8px;
}

.ea-editors-footer{
    margin-top:60px;
    text-align:center;
}


/*====================================================
COMPARISON TABLE
====================================================*/

.ea-compare{
    background:#f7f9fc;
}

.ea-table-wrapper{
    overflow-x:auto;
    background:#fff;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.ea-compare-table{
    width:100%;
    border-collapse:collapse;
}

.ea-compare-table th{
    background:linear-gradient(90deg,var(--primary),var(--primary-dark));
    color:#fff;
    padding:18px;
    text-align:left;
    font-size:15px;
}

.ea-compare-table td{
    padding:18px;
    border-bottom:1px solid var(--border);
}

.ea-compare-table tbody tr{
    transition:.25s;
}

.ea-compare-table tbody tr:hover{
    background:#f7fffc;
}

.ea-compare-table td:first-child{
    font-weight:700;
}

.ea-disclaimer-box{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:30px;
    align-items:center;
    margin-top:60px;
    background:#fff;
    border-radius:22px;
    padding:35px;
    box-shadow:var(--shadow);
}

.ea-disclaimer-box .ea-placeholder{
    min-height:180px;
}


/*====================================================
INSTALLATION
====================================================*/

.ea-installation{
    background:#fff;
}

.ea-install-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.ea-install-step{
    position:relative;
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px;
    box-shadow:var(--shadow);
    transition:.35s;
}

.ea-install-step:hover{
    transform:translateY(-8px);
}

.ea-step-number{
    position:absolute;
    right:20px;
    top:18px;
    font-size:40px;
    font-weight:900;
    color:#edf2f7;
}

.ea-install-step .ea-placeholder{
    min-height:90px;
    margin-bottom:20px;
}

.ea-install-footer{
    margin-top:70px;
    background:#f8fbfd;
    border-radius:20px;
    padding:35px;
    text-align:center;
}


/*====================================================
SECURITY
====================================================*/

.ea-security{
    background:#f8fbfd;
}

.ea-security-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.ea-security-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s;
}

.ea-security-card:hover{
    transform:translateY(-8px);
}

.ea-security-card .ea-placeholder{
    min-height:90px;
    margin-bottom:20px;
}

.ea-security-notice{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:35px;
    align-items:center;
    margin-top:70px;
    background:#fff;
    border-radius:22px;
    padding:35px;
    box-shadow:var(--shadow);
}

.ea-security-notice .ea-placeholder{
    min-height:200px;
}

.ea-security-links{
    margin-top:60px;
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:var(--shadow);
}

.ea-security-links h3{
    margin-bottom:20px;
}

.ea-security-links ul{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
    list-style:none;
}

.ea-security-links li a{
    display:block;
    padding:14px 18px;
    background:#f8fbfd;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.ea-security-links li a:hover{
    background:var(--primary);
    color:#fff;
}


/*====================================================
COMMON CARD EFFECTS
====================================================*/

.ea-choice-card,
.ea-install-step,
.ea-security-card,
.ea-process-item,
.ea-category-card,
.ea-app-card,
.ea-trust-card{

    transition:.35s ease;

}

.ea-choice-card:hover,
.ea-install-step:hover,
.ea-security-card:hover,
.ea-process-item:hover,
.ea-category-card:hover,
.ea-app-card:hover,
.ea-trust-card:hover{

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}


/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:991px){

.ea-disclaimer-box,
.ea-security-notice{

grid-template-columns:1fr;

}

.ea-pros-cons{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.ea-choice-content,
.ea-install-step,
.ea-security-card{

padding:25px;

}

.ea-compare-table th,
.ea-compare-table td{

padding:14px;

font-size:14px;

}

}


/*==============================================================
PART 4
Guides
FAQ
Editorial
Responsible Gaming
==============================================================*/


/*====================================================
GUIDES
====================================================*/

.ea-guides{
    background:#ffffff;
}

.ea-guide-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.ea-guide-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    transition:.35s;
}

.ea-guide-card:hover{
    transform:translateY(-10px);
}

.ea-guide-image .ea-placeholder{
    min-height:220px;
    border:none;
    border-radius:0;
}

.ea-guide-content{
    padding:30px;
}

.ea-guide-meta{
    display:flex;
    justify-content:space-between;
    margin:20px 0;
    color:#888;
    font-size:14px;
}

.ea-guides-footer{
    margin-top:60px;
    padding:35px;
    border-radius:20px;
    background:#f8fbfd;
    text-align:center;
}


/*====================================================
FAQ
====================================================*/

.ea-faq{
    background:#f7f9fc;
}

.ea-faq-wrapper{
    max-width:900px;
    margin:auto;
}

.ea-faq-item{
    background:#fff;
    border-radius:18px;
    margin-bottom:20px;
    padding:28px;
    box-shadow:var(--shadow);
    transition:.3s;
}

.ea-faq-item:hover{
    transform:translateY(-4px);
}

.ea-faq-item h3{
    font-size:20px;
    margin-bottom:12px;
    color:var(--secondary);
}

.ea-faq-item p{
    margin:0;
}

.ea-faq-footer{
    margin-top:50px;
    text-align:center;
}


/*====================================================
EDITORIAL
====================================================*/

.ea-editorial{
    background:#ffffff;
}

.ea-editorial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.ea-editorial-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s;
}

.ea-editorial-card:hover{
    transform:translateY(-8px);
}

.ea-editorial-card .ea-placeholder{
    min-height:90px;
    margin-bottom:20px;
}

.ea-editorial-info{
    margin-top:70px;
    background:#f8fbfd;
    border-radius:20px;
    padding:40px;
    box-shadow:var(--shadow);
}

.ea-editorial-info h3{
    margin-bottom:20px;
}


/*====================================================
RESPONSIBLE GAMING
====================================================*/

.ea-responsible{
    background:#f8fbfd;
}

.ea-responsible-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.ea-responsible-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s;
}

.ea-responsible-card:hover{
    transform:translateY(-8px);
}

.ea-responsible-card .ea-placeholder{
    min-height:90px;
    margin-bottom:20px;
}

.ea-legal-notice{
    margin-top:70px;
    display:grid;
    grid-template-columns:300px 1fr;
    gap:35px;
    background:#fff;
    border-radius:22px;
    padding:40px;
    box-shadow:var(--shadow);
    align-items:center;
}

.ea-legal-notice .ea-placeholder{
    min-height:220px;
}


/*====================================================
UTILITY PANELS
====================================================*/

.ea-panel{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:var(--shadow);
    margin-top:40px;
}

.ea-panel h3{
    margin-bottom:20px;
}

.ea-panel ul{
    list-style:none;
}

.ea-panel li{
    padding:12px 0;
    border-bottom:1px solid var(--border);
}

.ea-panel li:last-child{
    border-bottom:none;
}


/*====================================================
LIST STYLE
====================================================*/

.ea-check-list{
    margin-top:25px;
}

.ea-check-list li{
    position:relative;
    padding-left:30px;
}

.ea-check-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:10px;
    color:var(--primary);
    font-weight:700;
}


/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:991px){

.ea-legal-notice{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.ea-guide-content,
.ea-editorial-card,
.ea-responsible-card{

padding:25px;

}

.ea-faq-item{

padding:22px;

}

.ea-editorial-info,
.ea-legal-notice{

padding:25px;

}

}


/*==============================================================
PART 5
Premium CTA
Footer Links
Utilities
Animations
Responsive
==============================================================*/


/*====================================================
FINAL CTA
====================================================*/

.ea-final-cta{

    background:linear-gradient(135deg,#0f172a,#1e293b);

    color:#fff;

    position:relative;

    overflow:hidden;

}

.ea-final-cta::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    right:-250px;

    top:-250px;

}

.ea-final-cta .ea-container{

    position:relative;

    z-index:2;

}

.ea-cta-wrapper{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:60px;

    align-items:center;

}

.ea-final-cta h2{

    color:#fff;

    font-size:48px;

}

.ea-final-cta p{

    color:rgba(255,255,255,.82);

    font-size:18px;

}

.ea-final-cta .ea-section-tag{

    background:rgba(255,255,255,.12);

    color:#fff;

}

.ea-cta-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-top:35px;

}

.ea-final-cta .ea-placeholder{

    min-height:360px;

    border:2px dashed rgba(255,255,255,.25);

    background:rgba(255,255,255,.05);

    color:#fff;

}


/*====================================================
FOOTER LINKS
====================================================*/

.ea-link-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

    margin-top:80px;

}

.ea-link-column{

    background:rgba(255,255,255,.05);

    padding:30px;

    border-radius:20px;

}

.ea-link-column h3{

    color:#fff;

    margin-bottom:20px;

}

.ea-link-column ul{

    list-style:none;

}

.ea-link-column li{

    margin-bottom:14px;

}

.ea-link-column a{

    color:rgba(255,255,255,.8);

    transition:.3s;

}

.ea-link-column a:hover{

    color:#fff;

    padding-left:8px;

}


/*====================================================
FINAL NOTICE
====================================================*/

.ea-final-notice{

    margin-top:80px;

    display:grid;

    grid-template-columns:280px 1fr;

    gap:40px;

    background:rgba(255,255,255,.06);

    padding:40px;

    border-radius:24px;

    backdrop-filter:blur(10px);

}

.ea-final-notice h3{

    color:#fff;

}

.ea-final-notice p{

    color:rgba(255,255,255,.82);

}

.ea-final-notice .ea-placeholder{

    min-height:200px;

    background:rgba(255,255,255,.08);

    border-color:rgba(255,255,255,.18);

    color:#fff;

}


/*====================================================
GLOBAL HOVER EFFECTS
====================================================*/

.ea-app-card,
.ea-choice-card,
.ea-guide-card,
.ea-category-card,
.ea-security-card,
.ea-editorial-card,
.ea-responsible-card{

    transition:all .35s ease;

}

.ea-app-card:hover,
.ea-choice-card:hover,
.ea-guide-card:hover,
.ea-category-card:hover,
.ea-security-card:hover,
.ea-editorial-card:hover,
.ea-responsible-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}


/*====================================================
IMAGE PLACEHOLDER EFFECT
====================================================*/

.ea-placeholder{

    transition:.35s;

}

.ea-placeholder:hover{

    transform:scale(1.02);

}


/*====================================================
SMOOTH ANIMATION
====================================================*/

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:none;

}

}

section{

animation:fadeUp .8s ease both;

}


/*====================================================
UTILITY CLASSES
====================================================*/

.text-center{

text-align:center;

}

.mt-20{

margin-top:20px;

}

.mt-40{

margin-top:40px;

}

.mt-60{

margin-top:60px;

}

.mb-20{

margin-bottom:20px;

}

.mb-40{

margin-bottom:40px;

}

.shadow{

box-shadow:var(--shadow);

}

.radius{

border-radius:20px;

}


/*====================================================
SCROLLBAR
====================================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:var(--primary);

border-radius:30px;

}

::-webkit-scrollbar-track{

background:#eef2f7;

}


/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:1200px){

.ea-link-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:991px){

.ea-cta-wrapper{

grid-template-columns:1fr;

}

.ea-final-notice{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.ea-link-grid{

grid-template-columns:1fr;

}

.ea-final-cta{

padding:70px 0;

}

.ea-final-cta h2{

font-size:34px;

}

.ea-cta-buttons{

flex-direction:column;

}

.ea-btn{

width:100%;

}

.ea-link-column{

padding:24px;

}

.ea-final-notice{

padding:24px;

}

}




/* ==========================================================
   Eams Apps — Dynamic Images & Icon System (additions)
   Add this to your theme's main stylesheet (e.g. style.css)
   or enqueue it as a separate file after the existing CSS.
========================================================== */

/* ---------- Generic inline SVG icon ---------- */
.ea-icon {
    width: 100%;
    height: 100%;
    display: block;
}

/* Icon wrapper used in trust/security/editorial/process cards */
.ea-icon-box {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 14px;
    background: var(--ea-icon-bg, #eef2ff);
    color: var(--ea-icon-color, #4f46e5);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.ea-icon-box-lg {
    width: 84px;
    height: 84px;
    padding: 18px;
    border-radius: 20px;
}

/* ---------- Category grid icon ---------- */
.ea-category-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 50%;
    background: var(--ea-icon-bg, #eef2ff);
    color: var(--ea-icon-color, #4f46e5);
    margin-bottom: 14px;
}

.ea-category-icon-svg {
    width: 100%;
    height: 100%;
}

/* ---------- Dynamic post thumbnails ---------- */
.ea-app-thumb,
.ea-choice-image,
.ea-guide-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 14px;
    background: #f3f4f6;
}

.ea-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.ea-app-card:hover .ea-thumb-img,
.ea-choice-card:hover .ea-thumb-img,
.ea-guide-card:hover .ea-thumb-img {
    transform: scale(1.05);
}

/* Fallback shown when a post has no featured image */
.ea-thumb-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #eef2ff, #f5f3ff);
    color: #4f46e5;
    text-align: center;
    padding: 16px;
}

.ea-thumb-fallback .ea-icon {
    width: 40px;
    height: 40px;
}

.ea-thumb-fallback span {
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    line-height: 1.3;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ---------- Hero illustration ---------- */
.ea-hero-illustration {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.ea-hero-blob {
    fill: #eef2ff;
}

.ea-hero-phone {
    fill: #111827;
}

.ea-hero-screen {
    fill: #ffffff;
}

.ea-hero-btn {
    fill: #374151;
}

.ea-hero-line {
    fill: #4f46e5;
}

.ea-hero-line-soft {
    fill: #c7d2fe;
}

.ea-hero-card rect:first-child {
    fill: #f9fafb;
    stroke: #e5e7eb;
    stroke-width: 1;
}

.ea-hero-card-icon {
    fill: #4f46e5;
    opacity: 0.15;
}

.ea-hero-card-text {
    fill: #374151;
}

.ea-hero-card-text-soft {
    fill: #9ca3af;
}

.ea-hero-badge circle {
    fill: #16a34a;
}

.ea-hero-badge-alt circle {
    fill: #f59e0b;
}

/* ---------- Responsive breakpoints ---------- */
@media (max-width: 768px) {
    .ea-hero-illustration {
        max-width: 280px;
    }

    .ea-icon-box,
    .ea-category-icon {
        width: 48px;
        height: 48px;
        padding: 10px;
    }

    .ea-icon-box-lg {
        width: 64px;
        height: 64px;
        padding: 14px;
    }

    .ea-app-thumb,
    .ea-choice-image,
    .ea-guide-image {
        aspect-ratio: 16 / 11;
    }
}

@media (max-width: 480px) {
    .ea-hero-illustration {
        max-width: 220px;
    }
}


.ea-app-thumb,
.ea-choice-image,
.ea-guide-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 14px;
    background: #f3f4f6;
}

.ea-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 600px) {
    .ea-app-thumb,
    .ea-choice-image,
    .ea-guide-image {
        aspect-ratio: 16 / 10; /* slightly taller crop reads better on small screens */
    }
}