/*
Theme Name: ENOM Corporate
Version: 3.0.0
*/

:root{
    --navy:#071421;
    --navy2:#0c2033;
    --blue:#1877f2;
    --blue2:#3d98ff;
    --white:#ffffff;
    --bg:#f5f7f9;
    --text:#17222d;
    --muted:#6b7885;
    --line:#dfe5ea;
    --max:1180px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.6;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    display:block;
    max-width:100%;
}

.container{
    width:min(var(--max),92%);
    margin:auto;
}


/* HEADER */

.site-header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(7,20,33,.97);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.header-inner{
    min-height:76px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.brand img{
    max-height:42px;
    width:auto;
}

.brand-text{
    color:white;
    font-size:14px;
    font-weight:700;
}

.main-nav ul{
    list-style:none;
    display:flex;
    gap:28px;
    margin:0;
    padding:0;
}

.main-nav a{
    color:#d2dbe3;
    font-size:14px;
}

.main-nav a:hover{
    color:white;
}


/* HERO */

.home-hero{
    background:
        linear-gradient(135deg,#071421 0%,#0d2942 100%);
    color:white;
    padding:75px 0;
}

.hero-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.hero-label,
.section-head span,
.intro-title span,
.contact-section span{
    display:block;
    font-size:12px;
    letter-spacing:2px;
    font-weight:700;
    color:var(--blue2);
    margin-bottom:18px;
}

.hero-content h1{
    font-size:clamp(48px,6vw,76px);
    line-height:1.02;
    margin:0 0 28px;
    letter-spacing:-2px;
}

.hero-content p{
    max-width:570px;
    color:#b9c6d1;
    font-size:19px;
    margin:0 0 32px;
}

.hero-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    padding:13px 21px;
    border-radius:6px;
    font-weight:700;
    font-size:14px;
}

.btn.primary{
    background:var(--blue);
    color:white;
}

.btn.outline{
    color:white;
    border:1px solid rgba(255,255,255,.35);
}

.hero-image{
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 30px 70px rgba(0,0,0,.28);
}

.hero-image img{
    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
}


/* INTRO */

.intro-section{
    padding:100px 0;
    background:white;
}

.intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
}

.intro-title h2{
    margin:0;
    font-size:clamp(34px,4vw,52px);
    line-height:1.13;
    letter-spacing:-1.5px;
}

.intro-copy{
    font-size:18px;
    color:var(--muted);
}

.intro-copy p{
    margin-top:0;
    margin-bottom:22px;
}

.intro-copy a{
    color:var(--blue);
    font-weight:700;
}


/* SERVICES */

.services-section{
    padding:100px 0;
}

.section-head{
    margin-bottom:45px;
}

.section-head h2{
    margin:0;
    font-size:42px;
    letter-spacing:-1px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.service-card{
    background:white;
    border:1px solid var(--line);
    border-radius:10px;
    padding:35px;
    transition:.2s;
}

.service-card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(20,40,60,.08);
}

.service-icon{
    color:var(--blue);
    font-weight:700;
    font-size:13px;
}

.service-card h3{
    font-size:25px;
    margin:22px 0 12px;
}

.service-card p{
    color:var(--muted);
    margin:0;
}


/* BRANDS */

.brands-section{
    background:var(--navy);
    color:white;
    padding:100px 0;
}

.section-head.light h2{
    color:white;
}

.brand-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid rgba(255,255,255,.12);
    border-left:1px solid rgba(255,255,255,.12);
}

.brand-grid a{
    min-height:160px;
    padding:28px;
    border-right:1px solid rgba(255,255,255,.12);
    border-bottom:1px solid rgba(255,255,255,.12);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:.2s;
}

.brand-grid a:hover{
    background:var(--blue);
}

.brand-grid strong{
    font-size:22px;
}

.brand-grid span{
    color:#8fa1b1;
    font-size:13px;
}

.brand-grid a:hover span{
    color:white;
}


/* CONTACT */

.contact-section{
    background:white;
    padding:100px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:80px;
    align-items:end;
}

.contact-section h2{
    font-size:clamp(36px,5vw,60px);
    line-height:1.05;
    letter-spacing:-2px;
    margin:0;
}

.contact-side{
    color:var(--muted);
    font-size:17px;
}

.contact-side p{
    margin:0 0 25px;
}


/* FOOTER */

.site-footer{
    background:#040b12;
    color:#8997a4;
    padding:40px 0;
}

.footer-inner{
    display:flex;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;
}

.footer-inner strong{
    color:white;
}


/* MOBILE */

@media(max-width:900px){

    .main-nav{
        display:none;
    }

    .hero-layout,
    .intro-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .hero-layout{
        gap:45px;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .brand-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){

    .home-hero{
        padding:55px 0;
    }

    .hero-content h1{
        font-size:46px;
    }

    .intro-section,
    .services-section,
    .brands-section,
    .contact-section{
        padding:70px 0;
    }

    .brand-grid{
        grid-template-columns:1fr;
    }

    .section-head h2{
        font-size:34px;
    }
}

/* HERO LOGO */
.hero-image{
    min-height:480px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:70px;
    background:
        radial-gradient(circle at center,rgba(24,119,242,.16),transparent 55%),
        #081522;
}

.hero-image img{
    width:min(460px,85%);
    height:auto;
    aspect-ratio:auto;
    object-fit:contain;
    box-shadow:none;
    filter:none;
}

/* ==================================================
   OFFICIAL ENOM LOGO — DO NOT ALTER
   ================================================== */

.hero-image{
    min-height:500px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    padding:65px;
    background:
        radial-gradient(circle at center,
        rgba(24,119,242,.12) 0%,
        rgba(24,119,242,.04) 35%,
        transparent 68%),
        #081522;
}

/* decorative rings BEHIND the official logo */
.hero-image::before{
    content:"";
    position:absolute;
    width:390px;
    height:390px;
    border-radius:50%;
    border:1px solid rgba(80,160,255,.18);
    box-shadow:
        0 0 0 55px rgba(50,130,255,.035),
        0 0 0 110px rgba(50,130,255,.025);
}

/* subtle horizontal communication line */
.hero-image::after{
    content:"";
    position:absolute;
    left:8%;
    right:8%;
    top:50%;
    height:1px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(73,153,255,.25),
        transparent
    );
}

/* EXACT ORIGINAL LOGO */
.hero-image img{
    position:relative;
    z-index:2;

    width:min(440px,82%);
    height:auto;

    object-fit:contain;
    aspect-ratio:auto;

    /* absolutely no visual alteration */
    filter:none;
    opacity:1;
    transform:none;
    box-shadow:none;

    border:0;
    border-radius:0;
}


/* ==================================================
   ENOM CONTACT PAGE
   ================================================== */

.contact-hero{
    background:var(--navy);
    color:#fff;
    padding:90px 0 80px;
}

.contact-kicker,
.contact-label{
    display:block;
    color:var(--blue2);
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:18px;
}

.contact-hero h1{
    font-size:clamp(44px,6vw,72px);
    line-height:1;
    letter-spacing:-2px;
    margin:0 0 25px;
}

.contact-hero p{
    max-width:670px;
    color:#b9c6d1;
    font-size:18px;
    margin:0;
}


.contact-main{
    padding:100px 0;
    background:#f5f7f9;
}

.contact-layout{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:80px;
    align-items:start;
}


.contact-info h2{
    font-size:clamp(34px,4vw,50px);
    line-height:1.08;
    letter-spacing:-1.5px;
    margin:0 0 50px;
}


.contact-details{
    border-top:1px solid var(--line);
}

.contact-details > div{
    padding:22px 0;
    border-bottom:1px solid var(--line);
}

.contact-details small{
    display:block;
    color:#7a8792;
    font-size:10px;
    letter-spacing:1.5px;
    margin-bottom:7px;
}

.contact-details a,
.contact-details span{
    font-size:17px;
    font-weight:600;
}


.contact-form-box{
    background:#fff;
    border:1px solid var(--line);
    border-radius:12px;
    padding:42px;
}


.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}


.form-field{
    margin-bottom:22px;
}

.form-field label{
    display:block;
    font-size:13px;
    font-weight:700;
    margin-bottom:7px;
}


.form-field input,
.form-field select,
.form-field textarea{
    width:100%;
    border:1px solid #ccd5dc;
    border-radius:6px;
    background:#fff;
    color:#17222d;
    font:inherit;
    padding:13px 14px;
    outline:none;
    transition:border-color .2s, box-shadow .2s;
}


.form-field textarea{
    resize:vertical;
    min-height:160px;
}


.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
    border-color:var(--blue);
    box-shadow:0 0 0 3px rgba(24,119,242,.10);
}


.consent-field{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:#65727e;
    font-size:13px;
    margin:4px 0 25px;
}

.consent-field input{
    margin-top:4px;
}


.contact-submit{
    border:0;
    border-radius:6px;
    background:var(--blue);
    color:#fff;
    padding:14px 21px;
    font:inherit;
    font-weight:700;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:18px;
}

.contact-submit:hover{
    background:#0d65d9;
}


.form-message{
    padding:14px 16px;
    border-radius:6px;
    margin-bottom:25px;
    font-size:14px;
}

.form-message.success{
    background:#eaf8ef;
    color:#176b35;
    border:1px solid #bce4c8;
}

.form-message.error{
    background:#fff0f0;
    color:#9a2424;
    border:1px solid #efc2c2;
}


.enom-hp{
    position:absolute !important;
    left:-10000px !important;
    width:1px !important;
    height:1px !important;
    overflow:hidden !important;
}


@media(max-width:850px){

    .contact-layout{
        grid-template-columns:1fr;
        gap:55px;
    }

}

@media(max-width:600px){

    .contact-main{
        padding:65px 0;
    }

    .contact-form-box{
        padding:25px;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:0;
    }

}


/* ==================================================
   ENOM MATH CAPTCHA
   ================================================== */

.captcha-box{
    display:flex;
    align-items:center;
    gap:14px;
}

.captcha-box span{
    min-width:72px;
    font-size:18px;
    font-weight:700;
    color:#17222d;
}

.captcha-box input{
    max-width:110px;
    text-align:center;
    font-weight:700;
}

/* ==================================================
   ENOM SERVICES PAGES
   ================================================== */

.services-hero{
    padding:100px 0 80px;
    background:#0d1823;
    color:#fff;
}

.services-hero .page-eyebrow,
.services-commerce .page-eyebrow{
    display:block;
    margin-bottom:18px;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.services-hero h1{
    max-width:900px;
    margin:0 0 28px;
    font-size:clamp(42px,6vw,76px);
    line-height:1.04;
}

.services-lead{
    max-width:800px;
    margin-bottom:32px;
    font-size:19px;
    line-height:1.75;
}

.services-detail-section{
    padding:90px 0;
}

.services-detail-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:28px;
    margin-top:45px;
}

.service-detail-card{
    padding:38px;
    border:1px solid rgba(0,0,0,.10);
    background:#fff;
}

.service-detail-card.featured-service{
    border-width:2px;
}

.service-number{
    display:block;
    margin-bottom:24px;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.service-detail-card h2{
    margin:0 0 18px;
    font-size:28px;
}

.service-detail-card p{
    line-height:1.75;
}

.service-detail-card ul{
    margin:24px 0 0;
    padding-left:20px;
}

.service-detail-card li{
    margin:9px 0;
    line-height:1.55;
}

.services-commerce{
    padding:80px 0;
    background:#f3f5f7;
}

.services-commerce-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

.services-commerce h2{
    margin:0;
    font-size:clamp(30px,4vw,48px);
    line-height:1.15;
}

.services-commerce p{
    margin:0;
    font-size:18px;
    line-height:1.8;
}

@media (max-width:800px){

    .services-detail-grid,
    .services-commerce-grid{
        grid-template-columns:1fr;
    }

    .services-hero{
        padding:70px 0 60px;
    }

    .service-detail-card{
        padding:28px;
    }
}

/* ==================================================
   ENOM BRANDS & PROJECTS
   ================================================== */

.brands-hero{
    padding:100px 0 75px;
    background:#0d1823;
    color:#fff;
}

.brands-hero h1{
    max-width:900px;
    margin:0 0 25px;
    font-size:clamp(44px,6vw,76px);
    line-height:1.04;
}

.brands-lead{
    max-width:780px;
    margin:0;
    font-size:19px;
    line-height:1.75;
}

.brands-list-section{
    padding:90px 0;
}

.brands-project-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:28px;
}

.brand-project-card{
    display:grid;
    grid-template-columns:110px 1fr;
    gap:28px;
    padding:35px;
    border:1px solid rgba(0,0,0,.1);
    background:#fff;
}

.brand-project-mark{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100px;
    height:100px;
    background:#101c28;
    color:#fff;
    font-size:25px;
    font-weight:800;
    letter-spacing:-1px;
}

.brand-type{
    display:block;
    margin-bottom:8px;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
}

.brand-project-card h2{
    margin:0 0 14px;
    font-size:29px;
}

.brand-project-card p{
    margin:0 0 20px;
    line-height:1.7;
}

.brand-project-card a{
    font-weight:700;
    text-decoration:none;
}

.brands-network-info{
    padding:80px 0;
    background:#f3f5f7;
}

.brands-network-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.brands-network-grid h2{
    margin:0;
    font-size:clamp(32px,4vw,48px);
}

.brands-network-grid p{
    margin:0;
    font-size:18px;
    line-height:1.8;
}

@media(max-width:800px){

    .brands-project-grid,
    .brands-network-grid{
        grid-template-columns:1fr;
    }

    .brand-project-card{
        grid-template-columns:1fr;
    }
}

/* ==================================================
   ENOM ABOUT
   ================================================== */

.about-hero{
    padding:100px 0 80px;
    background:#0d1823;
    color:#fff;
}

.about-hero h1{
    max-width:950px;
    margin:0 0 28px;
    font-size:clamp(44px,6vw,76px);
    line-height:1.04;
}

.about-lead{
    max-width:820px;
    margin:0;
    font-size:19px;
    line-height:1.8;
}

.about-intro,
.about-network{
    padding:90px 0;
}

.about-two-columns{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
}

.about-two-columns h2{
    margin:0;
    font-size:clamp(32px,4vw,48px);
    line-height:1.15;
}

.about-copy{
    font-size:18px;
    line-height:1.8;
}

.about-copy p:first-child{
    margin-top:0;
}

.about-copy a{
    font-weight:700;
    text-decoration:none;
}

.about-pillars{
    padding:90px 0;
    background:#f3f5f7;
}

.about-pillar-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:20px;
    margin-top:45px;
}

.about-pillar-grid article{
    padding:30px;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
}

.about-pillar-grid article > span{
    display:block;
    margin-bottom:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.about-pillar-grid h3{
    margin:0 0 15px;
    font-size:23px;
}

.about-pillar-grid p{
    margin:0;
    line-height:1.65;
}

@media(max-width:900px){

    .about-pillar-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:700px){

    .about-two-columns,
    .about-pillar-grid{
        grid-template-columns:1fr;
    }
}
