
:root{
    --blue-dark:#0a3760;
    --blue-mid:#1676ad;
    --blue-light:#ddeefa;
    --red:#ed1c24;
    --red-dark:#c91018;
    --text-body:#4a5a6b;
    --text-muted:#6b7a8d;
    --white:#fff;
}

*{box-sizing:border-box}

body{
    margin:0;
    font-family:"IBM Plex Sans", Arial, sans-serif;
    color:#10213f;
    background:#fff;
    padding-top:0;
}

a{text-decoration:none}

.container{
    max-width:1180px;
    margin:0 auto;
    padding:0 22px;
}

@media(max-width:640px){
    .container{
        padding:0 16px;
    }
}

/* SHARED */
.eyebrow{
    display:block;
    color:var(--red);
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.06em;
    margin-bottom:8px;
}

/* HEADER */
.pt-header{
    background:transparent;
    color:#fff;
    padding:18px 0;
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1000;
    transition:background-color 0.3s ease;
}

.pt-header.scrolled{
    background:#001b3f;
}

.pt-header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}

.pt-logo{
    font-size:30px;
    font-weight:900;
    color:#fff;
}

.pt-logo span{color:#ffb8bd}

.pt-nav{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.pt-nav a{
    color:#fff;
    font-weight:700;
    font-size:14px;
}

.pt-btn{
    background:var(--red);
    color:#fff!important;
    padding:11px 16px;
    border-radius:8px;
    font-weight:800;
}

.pt-btn-blue{
    background:#0a3760;
    border:1px solid rgba(255,255,255,.3);
}

/* HERO */
.hero{
    background:
    linear-gradient(90deg,rgba(0,27,63,.76),rgba(0,27,63,.36)),
    url("img/policetax_landing_daytime.png");
    background-size:cover;
    background-position:center;
    color:#fff;
    padding:90px 0 110px;
    margin-top:0;
}

.hero-content{
    max-width:620px;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.9);
    color:#0a3760;
    padding:8px 14px;
    border-radius:999px;
    font-weight:800;
    font-size:13px;
    margin-bottom:20px;
}

.hero h1{
    font-size:clamp(42px,5vw,66px);
    line-height:1.05;
    margin:0 0 20px;
    color:#fff;
}

.hero h1 span{
    color:#70c9ff;
}

.hero p{
    font-size:20px;
    line-height:1.6;
    margin:0 0 28px;
}

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

.hero-actions a{
    padding:14px 20px;
    border-radius:8px;
    font-weight:800;
}

.hero-primary{
    background:var(--red);
    color:#fff;
}

.hero-secondary{
    background:#fff;
    color:#0a3760;
}

.hero-stats{
    margin-top:34px;
    display:flex;
    gap:28px;
    flex-wrap:wrap;
}

.hero-stat strong{
    display:block;
    font-size:28px;
    color:#fff;
}

.hero-stat span{
    font-size:14px;
    opacity:.9;
}

/* SECTION HEADING (shared) */
.section-heading{
    text-align:center;
    max-width:780px;
    margin:0 auto 34px;
}

.section-heading h2{
    color:var(--blue-dark);
    font-size:clamp(30px,3vw,42px);
    margin:0 0 10px;
}

.section-heading p{
    color:var(--text-body);
    font-size:18px;
    line-height:1.6;
}

/* CHOICE SECTION */
.choice-section{
    background:#eaf2fa;
    padding:70px 0;
}

.choice-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.choice-card{
    background:#fff;
    padding:26px;
    border:1px solid #c8dff0;
    border-radius:12px;
    min-height:220px;
}

.choice-card h3{
    color:var(--blue-dark);
    font-size:23px;
    margin:0 0 12px;
}

.choice-card p{
    color:var(--text-body);
    line-height:1.6;
}

.choice-card a{
    display:inline-block;
    margin-top:10px;
    color:#fff;
    background:var(--red);
    padding:11px 15px;
    border-radius:7px;
    font-weight:800;
}

/* TRUST BADGES */
.trust-strip{
    background:#fff;
    padding:46px 0;
    border-top:1px solid #e5e7eb;
    border-bottom:1px solid #e5e7eb;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}
.trust-card{
    border:1px solid #dbe2ea;
    padding:18px;
    text-align:center;
    background:#fff;
    min-height:135px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.trust-card img{
    display:block !important;
    width:auto !important;
    max-width:130px !important;
    height:60px !important;
    object-fit:contain !important;
    margin:0 auto !important;
}

.trust-card strong{
    display:block;
    color:var(--blue-dark);
    margin-top:12px;
    font-size:15px;
}

/* TAX SITUATION SELECTOR */
.taxtype-section{
    background:#f5f9fd;
    padding:64px 0;
}

.taxtype-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.taxtype-card{
    display:flex;
    align-items:center;
    gap:14px;
    background:#fff;
    border:1px solid #c8dff0;
    border-radius:12px;
    padding:20px;
    color:var(--blue-dark);
    transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.taxtype-card:hover{
    border-color:var(--blue-mid);
    box-shadow:0 12px 26px rgba(10,55,96,.1);
    transform:translateY(-3px);
}

.taxtype-icon{
    flex:0 0 46px;
    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--blue-light);
    color:var(--blue-mid);
    font-size:24px;
}

.taxtype-card h3{
    margin:0 0 4px;
    font-size:17px;
    color:var(--blue-dark);
}

.taxtype-card p{
    margin:0;
    font-size:13.5px;
    color:var(--text-body);
    line-height:1.45;
}

.taxtype-card .arrow{
    margin-left:auto;
    color:var(--blue-dark);
    font-size:20px;
    transition:transform .2s ease;
}

.taxtype-card:hover .arrow{transform:translateX(4px)}

/* LODGEMENT OPTIONS */
.lodge-section{
    background:#eaf2fa;
    padding:64px 0;
}

.lodge-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.lodge-card{
    display:flex;
    align-items:center;
    gap:16px;
    background:#fff;
    border:1px solid #c8dff0;
    border-radius:12px;
    padding:24px;
    color:var(--blue-dark);
    transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.lodge-card:hover{
    border-color:var(--blue-mid);
    box-shadow:0 12px 26px rgba(10,55,96,.1);
    transform:translateY(-3px);
}

.lodge-icon{
    flex:0 0 54px;
    width:54px;
    height:54px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#0a3760,#1676ad);
    color:#fff;
    font-size:26px;
}

.lodge-card h3{margin:0 0 4px;font-size:18px;color:var(--blue-dark)}
.lodge-card p{margin:0;font-size:14px;color:var(--text-body);line-height:1.5}

/* SPECIALIST */
.specialist-section{
    background:#fff;
    padding:64px 0;
}

.specialist-layout{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:0;
    border:1px solid #c8dff0;
    border-radius:16px;
    overflow:hidden;
}

.specialist-visual{
    background:linear-gradient(135deg,#0a3760,#1676ad);
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:14px;
    padding:40px 28px;
    text-align:center;
}

.specialist-visual i{font-size:64px;opacity:.95}

.specialist-visual span{
    font-size:12px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    opacity:.9;
}

.specialist-content{padding:40px}

.specialist-content h2{
    color:var(--blue-dark);
    font-size:clamp(26px,2.4vw,34px);
    margin:0 0 10px;
}

.specialist-content > p{
    color:var(--text-body);
    line-height:1.6;
    margin:0 0 18px;
    max-width:520px;
}

.specialist-option{
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px 0;
    border-top:1px solid #e1e9f1;
    color:var(--blue-dark);
}

.specialist-option:last-child{border-bottom:1px solid #e1e9f1}

.specialist-option-icon{
    flex:0 0 40px;
    width:40px;
    height:40px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--blue-light);
    color:var(--blue-mid);
    font-size:21px;
}

.specialist-option h3{margin:0 0 2px;font-size:16px;color:var(--blue-dark)}
.specialist-option p{margin:0;font-size:13px;color:var(--text-body);line-height:1.4}

.specialist-option .arrow{
    margin-left:auto;
    color:var(--blue-dark);
    font-size:20px;
    transition:transform .2s ease;
}

.specialist-option:hover .arrow{transform:translateX(4px);color:var(--blue-mid)}

/* RECRUIT */
.recruit-section{
    background:#f5f9fd;
    padding:64px 0;
}

.recruit-panel{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:30px;
    align-items:center;
    background:var(--blue-dark);
    border-radius:16px;
    padding:46px;
    color:#fff;
}

.recruit-copy h2{margin:6px 0 12px;font-size:clamp(28px,2.6vw,38px);color:#fff}
.recruit-copy .eyebrow{color:#70c9ff}
.recruit-copy > p{color:rgba(255,255,255,.85);line-height:1.6;margin:0 0 18px;max-width:460px}

.recruit-list{
    list-style:none;
    margin:0 0 24px;
    padding:0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px 18px;
}

.recruit-list li{
    position:relative;
    padding-left:26px;
    font-size:15px;
    color:rgba(255,255,255,.92);
}

.recruit-list li::before{
    content:"\2713";
    position:absolute;
    left:0;
    color:#70c9ff;
    font-weight:900;
}

.recruit-cta{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--red);
    color:#fff;
    padding:13px 20px;
    border-radius:8px;
    font-weight:800;
}

.recruit-cta:hover{background:var(--red-dark)}

.recruit-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.18);
    border-radius:12px;
    padding:26px;
}

.recruit-card h3{margin:0 0 10px;font-size:21px;color:#fff}
.recruit-card p{margin:0;color:rgba(255,255,255,.82);line-height:1.6}

/* SERVICES MEGA */
.services-section{
    background:#f5f9fd;
    padding:64px 0;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.services-card{
    background:#fff;
    border:1px solid #c8dff0;
    border-radius:12px;
    padding:26px;
    display:flex;
    flex-direction:column;
    transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.services-card:hover{
    border-color:var(--blue-mid);
    box-shadow:0 14px 30px rgba(10,55,96,.1);
    transform:translateY(-4px);
}

.services-icon{
    width:54px;
    height:54px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--blue-light);
    color:var(--blue-mid);
    font-size:27px;
    margin-bottom:16px;
}

.services-card h3{
    margin:0 0 10px;
    font-size:20px;
    color:var(--blue-dark);
    display:flex;
    align-items:center;
    gap:6px;
}

.services-card p{color:var(--text-body);line-height:1.6;margin:0 0 14px}

.services-card ul{margin:0 0 14px;padding-left:18px;color:var(--text-body);line-height:1.7}

.services-link{
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:var(--blue-mid);
    font-weight:800;
    font-size:14px;
}

.services-link:hover{color:var(--blue-dark)}

/* GOOGLE REVIEWS */
.google-review-strip{
    background:#fff;
    padding:52px 0 58px;
    overflow:hidden;
}

.google-review-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
    margin-bottom:24px;
}

.review-eyebrow{
    display:block;
    color:var(--red);
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.06em;
    margin-bottom:8px;
}

.google-review-title{
    color:var(--blue-dark);
    font-size:clamp(30px,3vw,42px);
    font-weight:800;
    line-height:1.15;
    margin:0;
}

.review-subtitle{
    color:var(--text-body);
    font-size:17px;
    margin:8px 0 0;
}

.google-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    border:1px solid #d8dee9;
    border-radius:8px;
    background:#fff;
    color:#0a3760;
    font-size:13px;
    font-weight:700;
    padding:9px 13px;
    white-space:nowrap;
    box-shadow:0 4px 14px rgba(10,55,96,.08);
}

.stars{
    color:#FBBC04;
    letter-spacing:2px;
    font-weight:900;
    white-space:nowrap;
}

.google-review-window{
    overflow:hidden;
    position:relative;
}

.google-review-window::before,
.google-review-window::after{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    width:70px;
    z-index:2;
    pointer-events:none;
}

.google-review-window::before{
    left:0;
    background:linear-gradient(90deg,#fff,rgba(255,255,255,0));
}

.google-review-window::after{
    right:0;
    background:linear-gradient(270deg,#fff,rgba(255,255,255,0));
}

.google-review-track{
    display:flex;
    gap:16px;
    width:max-content;
    animation:review-slide 48s linear infinite;
}

.google-review-window:hover .google-review-track{
    animation-play-state:paused;
}

.google-review-card{
    flex:0 0 320px;
    min-height:185px;
    background:#fff;
    border:1px solid #c8dff0;
    padding:20px;
    position:relative;
}

.google-review-card p{
    color:#1f2937;
    font-size:16px;
    line-height:1.55;
    margin:28px 0 18px;
}

.google-review-card .stars{
    position:absolute;
    top:14px;
    right:18px;
}

.google-review-name{
    color:#73839a;
    font-size:14px;
    font-weight:800;
    margin:0;
}

@keyframes review-slide{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
}

/* MEET GARRY VIDEO */
.video-section{
    background:#fff;
    padding:64px 0;
}

.video-inner{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:40px;
    align-items:center;
}

.video-copy h2{color:var(--blue-dark);font-size:clamp(28px,2.6vw,38px);margin:6px 0 14px}
.video-copy p{color:var(--text-body);font-size:17px;line-height:1.65;margin:0 0 22px}

.video-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--red);
    color:#fff;
    padding:13px 20px;
    border-radius:8px;
    font-weight:800;
}

.video-btn:hover{background:var(--red-dark)}

.video-frame{
    position:relative;
    width:100%;
    aspect-ratio:16/9;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(10,55,96,.22);
}

.video-frame iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
}

/* WHY SECTION */
.why-section{
    background:#082d52;
    color:#fff;
    padding:70px 0;
}

.why-section h2{
    text-align:center;
    color:#70c9ff;
    font-size:clamp(30px,3vw,42px);
    margin:0 0 36px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.why-card{
    text-align:center;
    padding:20px;
}

.why-card h3{
    color:#fff;
    font-size:22px;
}

.why-card p{
    color:rgba(255,255,255,.86);
    line-height:1.6;
}

/* JOIN / NEW CLIENTS */
.join-section{
    background:#eaf2fa;
    padding:64px 0;
}

.join-panel{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:40px;
    align-items:center;
    background:var(--blue-dark);
    border-radius:16px;
    padding:48px;
    color:#fff;
}

.join-copy .eyebrow{color:#70c9ff}
.join-copy h2{margin:6px 0 12px;font-size:clamp(28px,2.6vw,40px);color:#fff}
.join-copy p{color:rgba(255,255,255,.85);line-height:1.65;margin:0 0 22px;max-width:430px}

.join-actions{display:flex;gap:12px;flex-wrap:wrap}

.join-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    border:1px solid rgba(255,255,255,.6);
    color:#fff;
    padding:12px 20px;
    border-radius:8px;
    font-weight:800;
}

.join-btn--primary{background:var(--red);border-color:var(--red)}
.join-btn--primary:hover{background:var(--red-dark);border-color:var(--red-dark)}
.join-btn:not(.join-btn--primary):hover{background:#fff;color:var(--blue-dark)}

.join-steps{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.join-step{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.18);
    border-radius:12px;
    padding:22px 18px;
}

.join-number{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border-radius:50%;
    border:1px solid rgba(112,201,255,.7);
    color:#70c9ff;
    font-weight:800;
    margin-bottom:12px;
}

.join-step h3{margin:0 0 7px;font-size:16px;color:#fff}
.join-step p{margin:0;font-size:13px;color:rgba(255,255,255,.78);line-height:1.5}

/* Members-only benefits list (join section) */
.join-benefits-label{
    display:block;
    font-size:11px;
    font-weight:800;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#70c9ff;
    margin-bottom:16px;
}

.join-benefits{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.join-benefit{
    display:grid;
    grid-template-columns:42px 1fr;
    gap:13px;
    align-items:start;
}

.join-benefit i{
    width:42px;
    height:42px;
    border-radius:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.2);
    color:#bfe6ff;
    font-size:20px;
}

.join-benefit strong{
    display:block;
    font-size:15px;
    font-weight:700;
    color:#fff;
    line-height:1.3;
}

.join-benefit span{
    display:block;
    font-size:13px;
    color:rgba(255,255,255,.78);
    line-height:1.45;
    margin-top:2px;
}

/* FAQ */
.faq-section{
    background:#eaf2fa;
    padding:64px 0;
}

.faq-header{text-align:center;margin-bottom:30px}
.faq-header .eyebrow{text-align:center}
.faq-header h2{color:var(--blue-dark);font-size:clamp(28px,2.6vw,38px);margin:6px 0 0}

.faq-list{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:12px}

.faq-item{
    background:#fff;
    border:1px solid #c8dff0;
    border-radius:10px;
    padding:4px 20px;
}

.faq-item summary{
    list-style:none;
    cursor:pointer;
    font-weight:700;
    color:var(--blue-dark);
    font-size:16.5px;
    padding:16px 28px 16px 0;
    position:relative;
}

.faq-item summary::-webkit-details-marker{display:none}

.faq-item summary::after{
    content:"+";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    font-size:22px;
    font-weight:400;
    color:var(--blue-mid);
}

.faq-item[open] summary::after{content:"\2013"}

.faq-answer p{
    color:var(--text-body);
    line-height:1.65;
    margin:0 0 16px;
}

/* FOOTER */
.footer{
    background:#001b3f;
    color:#fff;
    padding:34px 0;
    text-align:center;
}

.footer a{
    color:#70c9ff;
}

/* MOBILE */
@media(max-width:850px){
    .pt-header-inner{
        flex-direction:column;
    }

    .choice-grid,
    .trust-grid,
    .taxtype-grid,
    .lodge-grid,
    .services-grid,
    .why-grid,
    .join-steps{
        grid-template-columns:1fr;
    }

    .trust-grid{grid-template-columns:1fr 1fr}

    .specialist-layout,
    .recruit-panel,
    .join-panel,
    .video-inner{
        grid-template-columns:1fr;
    }

    .recruit-panel,
    .join-panel{padding:32px}

    .specialist-content{padding:30px}

    .google-review-header{
        display:block;
    }

    .google-badge{
        margin-top:14px;
    }

    .google-review-card{
        flex-basis:285px;
    }

    .google-review-track{
        animation-duration:58s;
    }

    .hero{
        padding:108px 0 70px;
    }
}

@media(max-width:640px){
    .recruit-list,
    .trust-grid{grid-template-columns:1fr}
    
    .hero{
        padding:96px 0 56px;
    }
    
    .hero h1{
        font-size:clamp(32px,7vw,48px);
    }
    
    .hero-actions{
        flex-direction:column;
    }
    
    .hero-actions a{
        width:100%;
        text-align:center;
    }
    
    .hero-stats{
        flex-direction:column;
        gap:18px;
    }
}


    /* ── Video section ───────────────────────────────────────────────────────── */
    .ptx-video-section {
        background: #0a3760;
        padding: 72px 0 80px;
    }

    .ptx-video-inner {
        align-items: center;
        display: grid;
        gap: 60px;
        grid-template-columns: minmax(0, 1fr) auto;
        margin: 0 auto;
        max-width: 1060px;
    }

    .ptx-video-copy .ptx-choice-eyebrow {
        color: #8bd5ff;
    }

    .ptx-video-copy h2 {
        color: #fff;
        font-size: clamp(26px, 2.4vw, 36px);
        font-weight: 500;
        line-height: 1.22;
        margin: 0 0 16px;
    }

    .ptx-video-copy p {
        color: rgba(255,255,255,0.82);
        font-size: 15px;
        line-height: 1.7;
        margin: 0 0 28px;
    }

    .theme-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 24px;
        border-radius: 8px;
        font-weight: 800;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .theme-btn-red {
        background: var(--red);
        color: #fff;
    }

    .theme-btn-red:hover {
        background: var(--red-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(237, 28, 36, 0.3);
    }

    .ptx-video-frame {
        border-radius: 16px;
        flex-shrink: 0;
        overflow: hidden;
        width: 280px;
    }

    .ptx-video-frame iframe {
        display: block;
        height: 498px;
        width: 280px;
    }

    @media (max-width: 900px) {
        .ptx-video-inner {
            grid-template-columns: 1fr;
            justify-items: center;
            text-align: center;
        }

        .ptx-video-copy .ptx-choice-eyebrow,
        .ptx-video-copy h2,
        .ptx-video-copy p {
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .ptx-video-section { padding: 48px 0 56px; }
        .ptx-video-frame { width: 100%; border-radius: 12px; }
        .ptx-video-frame iframe { width: 100%; height: 520px; }
    }

	/* ── Services We Provide mega-menu style section ─────────────────────────── */
.ptx-services-mega-section {
    background: #ffffff;
    padding: 18px 0 72px;
}

.ptx-services-mega-panel {
    background: #ffffff;
    border: 1px solid #d8e4ec;
    box-shadow: 0 18px 42px rgba(10, 55, 96, 0.08);
    margin: 0 auto;
    max-width: 1120px;
    padding: 44px 52px 48px;
}

.ptx-services-mega-heading {
    margin-bottom: 36px;
    max-width: 760px;
}

.ptx-services-mega-heading .ptx-choice-eyebrow {
    color: var(--blue-mid);
}

.ptx-services-mega-heading h2 {
    color: var(--blue-dark);
    font-size: clamp(28px, 2.6vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    margin: 0 0 12px;
}

.ptx-services-mega-heading p {
    color: #34485c;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.ptx-services-mega-grid {
    display: grid;
    gap: 42px 54px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ptx-services-mega-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    min-height: 220px;
}

.ptx-services-mega-icon {
    align-items: center;
    border: 1px solid #aebdca;
    border-radius: 4px;
    color: var(--blue-dark);
    display: inline-flex;
    font-size: 26px;
    height: 42px;
    justify-content: center;
    position: relative;
    width: 42px;
}

.ptx-services-mega-icon::after {
    background: #1676ad;
    bottom: 5px;
    content: "";
    height: 9px;
    position: absolute;
    right: 5px;
    width: 9px;
}

.ptx-services-mega-content h3 {
    align-items: center;
    color: #0a1628;
    display: flex;
    font-size: 22px;
    font-weight: 800;
    gap: 8px;
    line-height: 1.15;
    margin: 0 0 18px;
}

.ptx-services-mega-content h3 i {
    color: var(--blue-dark);
    font-size: 20px;
    transition: transform 0.2s ease;
}

.ptx-services-mega-card:hover h3 i {
    transform: translateX(4px);
}

.ptx-services-mega-content p,
.ptx-services-mega-content ul {
    color: #005eb8;
    font-size: 15px;
    line-height: 1.58;
    margin: 0 0 16px;
}

.ptx-services-mega-content ul {
    list-style: none;
    padding: 0;
}

.ptx-services-mega-content li {
    margin-bottom: 5px;
}

.ptx-services-mega-content li::before {
    color: var(--blue-mid);
    content: "•";
    font-weight: 900;
    margin-right: 7px;
}

.ptx-services-mega-link {
    color: #005eb8;
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    gap: 6px;
    text-decoration: none;
}

.ptx-services-mega-link:hover {
    color: var(--blue-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 980px) {
    .ptx-services-mega-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ptx-services-mega-section {
        padding: 8px 0 48px;
    }

    .ptx-services-mega-panel {
        padding: 30px 20px;
    }

    .ptx-services-mega-grid {
        gap: 34px;
        grid-template-columns: 1fr;
    }

    .ptx-services-mega-card {
        min-height: auto;
    }

    .ptx-services-mega-content h3 {
        font-size: 20px;
    }
}

/* ── About Us Section ──────────────────────────────────────────────────── */
.about-us-section {
    background: #fff;
    padding: 72px 0 80px;
    border-top: 1px solid #e5e7eb;
}

.about-us-content {
    max-width: 860px;
    margin: 0 auto;
}

.about-us-content h2 {
    color: var(--blue-dark);
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 24px;
}

.about-us-content p {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 18px;
}

.about-us-content p:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 48px 0 56px;
    }

    .about-us-content h2 {
        font-size: clamp(28px, 2.6vw, 36px);
        margin-bottom: 18px;
    }

    .about-us-content p {
        font-size: 15px;
    }
}