/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

p:empty {
    display: none;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    border-radius: 3px;
}

.btn-orange {
    background-color: #f54a00;
    color: #fff;
    border: 2px solid #f54a00;
}

.btn-orange:hover {
    background-color: #d04103;
    border-color: #d04103;
}

.btn-orange-outline {
    background-color: transparent;
    color: #f54a00;
    border: 2px solid #f54a00;
}

.btn-orange-outline:hover {
    background-color: #f54a00;
    color: #fff;
}

.btn-sm {
    padding: 8px 25px;
    font-size: 13px;
}

.btn-full {
    width: 100%;
}

/* ===== HEADER (White bar - 2019 style) ===== */
.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    padding: 0;
    border-bottom: 1px solid #e7e7e7;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo .hd-logo {
    height: 72px;
    width: auto;
    padding: 10px 0;
}

.nav ul {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav > ul > li {
    position: relative;
}

.nav > ul > li > a {
    color: #333;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
    padding: 30px 18px;
    display: block;
    cursor: pointer;
}

.nav > ul > li > a:hover {
    color: #ea623e;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
}

/* ===== BANNER (Dark doodle pattern) ===== */
#banner {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background-color: #1a1a1a;
    background-image:
        /* Tech doodle pattern - gears, charts, devices, bulbs, targets, code */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3C!-- Gear 1 --%3E%3Ccircle cx='50' cy='50' r='18'/%3E%3Ccircle cx='50' cy='50' r='8'/%3E%3Cline x1='50' y1='28' x2='50' y2='22'/%3E%3Cline x1='50' y1='72' x2='50' y2='78'/%3E%3Cline x1='28' y1='50' x2='22' y2='50'/%3E%3Cline x1='72' y1='50' x2='78' y2='50'/%3E%3Cline x1='37' y1='37' x2='32' y2='32'/%3E%3Cline x1='63' y1='63' x2='68' y2='68'/%3E%3Cline x1='63' y1='37' x2='68' y2='32'/%3E%3Cline x1='37' y1='63' x2='32' y2='68'/%3E%3C!-- Lightbulb --%3E%3Ccircle cx='200' cy='45' r='16'/%3E%3Cline x1='192' y1='61' x2='208' y2='61'/%3E%3Cline x1='194' y1='66' x2='206' y2='66'/%3E%3Cline x1='196' y1='71' x2='204' y2='71'/%3E%3Cline x1='200' y1='71' x2='200' y2='76'/%3E%3C!-- Bar Chart --%3E%3Crect x='310' y='55' width='10' height='25'/%3E%3Crect x='325' y='40' width='10' height='40'/%3E%3Crect x='340' y='48' width='10' height='32'/%3E%3Crect x='355' y='30' width='10' height='50'/%3E%3Cline x1='305' y1='80' x2='370' y2='80'/%3E%3C!-- Laptop --%3E%3Crect x='25' y='160' width='50' height='32' rx='2'/%3E%3Cline x1='15' y1='196' x2='85' y2='196'/%3E%3Cline x1='25' y1='192' x2='15' y2='196'/%3E%3Cline x1='75' y1='192' x2='85' y2='196'/%3E%3C!-- Target/Bullseye --%3E%3Ccircle cx='200' cy='180' r='22'/%3E%3Ccircle cx='200' cy='180' r='14'/%3E%3Ccircle cx='200' cy='180' r='6'/%3E%3Cline x1='210' y1='170' x2='224' y2='156'/%3E%3Cline x1='224' y1='156' x2='224' y2='164'/%3E%3Cline x1='224' y1='156' x2='216' y2='156'/%3E%3C!-- Magnifying Glass (SEO) --%3E%3Ccircle cx='340' cy='170' r='16'/%3E%3Cline x1='352' y1='182' x2='365' y2='195'/%3E%3C!-- Envelope --%3E%3Crect x='30' y='280' width='45' height='30' rx='2'/%3E%3Cpolyline points='30,280 52.5,300 75,280'/%3E%3C!-- Mobile Phone --%3E%3Crect x='185' y='280' width='28' height='48' rx='3'/%3E%3Cline x1='185' y1='290' x2='213' y2='290'/%3E%3Cline x1='185' y1='318' x2='213' y2='318'/%3E%3Ccircle cx='199' cy='323' r='2'/%3E%3C!-- Pie Chart --%3E%3Ccircle cx='340' cy='300' r='20'/%3E%3Cline x1='340' y1='300' x2='340' y2='280'/%3E%3Cline x1='340' y1='300' x2='357' y2='310'/%3E%3C!-- Code brackets --%3E%3Cpolyline points='110,135 95,155 110,175'/%3E%3Cpolyline points='145,135 160,155 145,175'/%3E%3Cline x1='135' y1='130' x2='118' y2='180'/%3E%3C!-- WiFi Signal --%3E%3Cpath d='M120,270 Q128,260 136,270'/%3E%3Cpath d='M115,262 Q128,248 141,262'/%3E%3Cpath d='M110,254 Q128,236 146,254'/%3E%3Ccircle cx='128' cy='274' r='2'/%3E%3C!-- Cloud --%3E%3Cpath d='M270,140 Q270,125 285,125 Q290,115 305,118 Q320,110 325,125 Q340,125 340,140 Z'/%3E%3C!-- Rocket --%3E%3Cpath d='M280,260 L290,240 L300,260'/%3E%3Cline x1='290' y1='240' x2='290' y2='225'/%3E%3Cline x1='280' y1='260' x2='275' y2='268'/%3E%3Cline x1='300' y1='260' x2='305' y2='268'/%3E%3Cline x1='283' y1='265' x2='297' y2='265'/%3E%3C!-- Star --%3E%3Cpolygon points='128,330 132,342 145,342 135,350 138,362 128,354 118,362 121,350 111,342 124,342'/%3E%3C!-- Megaphone --%3E%3Cpath d='M250,360 L280,345 L280,375 Z'/%3E%3Cline x1='280' y1='355' x2='295' y2='355'/%3E%3Cline x1='280' y1='360' x2='293' y2='363'/%3E%3Cline x1='280' y1='350' x2='293' y2='347'/%3E%3C!-- Pencil --%3E%3Cline x1='355' y1='360' x2='375' y2='340'/%3E%3Cline x1='352' y1='357' x2='372' y2='337'/%3E%3Cline x1='350' y1='362' x2='352' y2='357'/%3E%3Cline x1='372' y1='337' x2='378' y2='337'/%3E%3Cline x1='375' y1='340' x2='378' y2='337'/%3E%3C!-- Graph line --%3E%3Cpolyline points='30,390 55,375 80,385 105,360 130,370'/%3E%3Ccircle cx='55' cy='375' r='2'/%3E%3Ccircle cx='80' cy='385' r='2'/%3E%3Ccircle cx='105' cy='360' r='2'/%3E%3C!-- Dollar Sign --%3E%3Ctext x='370' y='250' font-size='28' fill='%23ffffff' fill-opacity='0.07' stroke='none'%3E%24%3C/text%3E%3C!-- At sign --%3E%3Ccircle cx='50' cy='120' r='10'/%3E%3Cpath d='M60,120 A10,10 0 1,0 50,130'/%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(135deg, #1a1a1a 0%, #222 30%, #1d1d1d 60%, #1a1a1a 100%);
    background-attachment: fixed;
    background-size: 400px 400px, cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

#banner .content-wrap {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

#banner h1 {
    font-family: 'Merriweather', serif;
    font-size: 52px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
}

#banner .banner-content p,
#banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 35px;
}

#banner .btn {
    padding: 14px 40px;
    font-size: 16px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.scroll-down {
    margin-top: 20px;
}

.scroll-down a {
    color: #fff;
    font-size: 36px;
    animation: bounce 2s infinite;
    display: inline-block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

/* ===== ABOUT US / RESULT DRIVEN ===== */
#about-section {
    padding: 70px 0;
    background: #fff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

#about-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 36px;
    font-weight: 400;
    color: #ea623e;
    margin-bottom: 25px;
    line-height: 1.3;
}

#about-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

#about-section a:not(.btn) {
    color: #ea623e;
}

.cta-inline {
    margin-top: 25px;
}

.cta-inline h3 {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
    font-style: italic;
}

.cta-inline .btn {
    background: #f55b46;
    border-color: #f55b46;
    color: #fff;
    border-radius: 4px;
    margin-bottom: 20px;
}

.cta-inline .btn:hover {
    background: #d04103;
    border-color: #d04103;
}

/* ===== ILLUSTRATION BANNER ===== */
.illustration-banner {
    padding: 0;
    background: #f5f5f5;
    overflow: hidden;
}

.illustration-wrap {
    max-width: 100%;
    text-align: center;
}

.illustration-wrap img {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
}

/* ===== TRUSTED PARTNER (Dark doodle pattern) ===== */
#trusted-partner {
    position: relative;
    padding: 80px 0;
    background-color: #1a1a1a;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='50' cy='50' r='18'/%3E%3Ccircle cx='50' cy='50' r='8'/%3E%3Cline x1='50' y1='28' x2='50' y2='22'/%3E%3Cline x1='50' y1='72' x2='50' y2='78'/%3E%3Cline x1='28' y1='50' x2='22' y2='50'/%3E%3Cline x1='72' y1='50' x2='78' y2='50'/%3E%3Cline x1='37' y1='37' x2='32' y2='32'/%3E%3Cline x1='63' y1='63' x2='68' y2='68'/%3E%3Cline x1='63' y1='37' x2='68' y2='32'/%3E%3Cline x1='37' y1='63' x2='32' y2='68'/%3E%3Ccircle cx='200' cy='45' r='16'/%3E%3Cline x1='192' y1='61' x2='208' y2='61'/%3E%3Cline x1='194' y1='66' x2='206' y2='66'/%3E%3Cline x1='196' y1='71' x2='204' y2='71'/%3E%3Cline x1='200' y1='71' x2='200' y2='76'/%3E%3Crect x='310' y='55' width='10' height='25'/%3E%3Crect x='325' y='40' width='10' height='40'/%3E%3Crect x='340' y='48' width='10' height='32'/%3E%3Crect x='355' y='30' width='10' height='50'/%3E%3Cline x1='305' y1='80' x2='370' y2='80'/%3E%3Crect x='25' y='160' width='50' height='32' rx='2'/%3E%3Cline x1='15' y1='196' x2='85' y2='196'/%3E%3Cline x1='25' y1='192' x2='15' y2='196'/%3E%3Cline x1='75' y1='192' x2='85' y2='196'/%3E%3Ccircle cx='200' cy='180' r='22'/%3E%3Ccircle cx='200' cy='180' r='14'/%3E%3Ccircle cx='200' cy='180' r='6'/%3E%3Cline x1='210' y1='170' x2='224' y2='156'/%3E%3Cline x1='224' y1='156' x2='224' y2='164'/%3E%3Cline x1='224' y1='156' x2='216' y2='156'/%3E%3Ccircle cx='340' cy='170' r='16'/%3E%3Cline x1='352' y1='182' x2='365' y2='195'/%3E%3Crect x='30' y='280' width='45' height='30' rx='2'/%3E%3Cpolyline points='30,280 52.5,300 75,280'/%3E%3Crect x='185' y='280' width='28' height='48' rx='3'/%3E%3Cline x1='185' y1='290' x2='213' y2='290'/%3E%3Cline x1='185' y1='318' x2='213' y2='318'/%3E%3Ccircle cx='199' cy='323' r='2'/%3E%3Ccircle cx='340' cy='300' r='20'/%3E%3Cline x1='340' y1='300' x2='340' y2='280'/%3E%3Cline x1='340' y1='300' x2='357' y2='310'/%3E%3Cpolyline points='110,135 95,155 110,175'/%3E%3Cpolyline points='145,135 160,155 145,175'/%3E%3Cline x1='135' y1='130' x2='118' y2='180'/%3E%3Cpath d='M120,270 Q128,260 136,270'/%3E%3Cpath d='M115,262 Q128,248 141,262'/%3E%3Cpath d='M110,254 Q128,236 146,254'/%3E%3Ccircle cx='128' cy='274' r='2'/%3E%3Cpath d='M270,140 Q270,125 285,125 Q290,115 305,118 Q320,110 325,125 Q340,125 340,140 Z'/%3E%3Cpath d='M280,260 L290,240 L300,260'/%3E%3Cline x1='290' y1='240' x2='290' y2='225'/%3E%3Cline x1='280' y1='260' x2='275' y2='268'/%3E%3Cline x1='300' y1='260' x2='305' y2='268'/%3E%3Cline x1='283' y1='265' x2='297' y2='265'/%3E%3Cpolygon points='128,330 132,342 145,342 135,350 138,362 128,354 118,362 121,350 111,342 124,342'/%3E%3Cpath d='M250,360 L280,345 L280,375 Z'/%3E%3Cline x1='280' y1='355' x2='295' y2='355'/%3E%3Cline x1='280' y1='360' x2='293' y2='363'/%3E%3Cline x1='280' y1='350' x2='293' y2='347'/%3E%3Cline x1='355' y1='360' x2='375' y2='340'/%3E%3Cline x1='352' y1='357' x2='372' y2='337'/%3E%3Cline x1='350' y1='362' x2='352' y2='357'/%3E%3Cline x1='372' y1='337' x2='378' y2='337'/%3E%3Cline x1='375' y1='340' x2='378' y2='337'/%3E%3Cpolyline points='30,390 55,375 80,385 105,360 130,370'/%3E%3Ccircle cx='55' cy='375' r='2'/%3E%3Ccircle cx='80' cy='385' r='2'/%3E%3Ccircle cx='105' cy='360' r='2'/%3E%3Ccircle cx='50' cy='120' r='10'/%3E%3Cpath d='M60,120 A10,10 0 1,0 50,130'/%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(135deg, #1a1a1a 0%, #222 30%, #1d1d1d 60%, #1a1a1a 100%);
    background-attachment: fixed;
    background-size: 400px 400px, cover;
    color: #fff;
    text-align: center;
}

#trusted-partner h2 {
    font-family: 'Merriweather', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

#trusted-partner p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== TRANSFORM BRAND ===== */
#transform-brand {
    padding: 70px 0;
    background: #fff;
}

.transform-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

#transform-brand h2 {
    font-family: 'Merriweather', serif;
    font-size: 32px;
    font-weight: 400;
    color: #ea623e;
    margin-bottom: 20px;
    line-height: 1.3;
}

#transform-brand p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

#transform-brand a:not(.btn) {
    color: #ea623e;
}

/* ===== BLOG ===== */
#blog-bg {
    background-color: #f5f5f5;
    padding: 70px 0;
}

.blog-heading h3 {
    color: #ea623e;
    font-size: 40px;
    text-transform: none;
    margin: 0 0 30px;
    text-align: center;
    font-family: 'Merriweather', serif;
    font-weight: 400;
}

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

.blog-section {
    background: #fff;
    overflow: hidden;
    min-height: 420px;
}

.blog-hdg-1 {
    width: 100%;
    height: 170px;
    overflow: hidden;
}

.blog-hdg-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-cnt {
    padding: 20px;
}

.blog-cnt h3 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
    font-family: 'Open Sans', sans-serif;
}

.blog-cnt .blog-date,
.blog-cnt span {
    font-size: 12px;
    color: #999;
    display: block;
    margin-bottom: 10px;
}

.blog-cnt p {
    font-size: 13px;
    color: #585858;
    line-height: 1.7;
    margin-bottom: 12px;
}

.blog-cnt a {
    color: #ea623e;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.blog-cnt a:hover {
    text-decoration: underline;
}

.blog-athr {
    padding: 10px 20px;
    border-top: 1px solid #eee;
}

.blog-athr p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.blg-ldmr {
    margin-top: 40px;
}

/* ===== LETS GET STARTED CTA ===== */
#cta-started {
    background-color: #f55b46;
    padding: 60px 0;
    text-align: center;
}

.cta-started-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

#cta-started h2 {
    font-family: 'Merriweather', serif;
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    font-style: italic;
}

#cta-started .btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 4px;
    padding: 10px 25px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

#cta-started .btn:hover {
    background: #fff;
    color: #f55b46;
}

/* ===== FOOTER ===== */
#ftr {
    color: #fff;
}

.footer-top {
    background-color: #363636;
    padding: 50px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
    gap: 30px;
}

.f-t-col {
    margin: 20px 0;
}

.f-t-col h3 {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 25px;
}

.f-t-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
}

.f-t-col p a,
.f-t-col a {
    color: #ea623e;
}

.f-t-col .scl {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding: 0;
}

.f-t-col .scl li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #555;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    transition: background 0.3s;
}

.f-t-col .scl li a:hover {
    background: #ea623e;
}

.f-q-l {
    padding: 0;
}

.f-q-l li {
    margin-bottom: 12px;
}

.f-q-l li a {
    font-size: 14px;
    color: #ccc;
    transition: color 0.3s;
}

.f-q-l li a:hover {
    color: #ea623e;
}

.f-q-l li i {
    color: #ea623e;
    margin-right: 8px;
    width: 16px;
}

.footer-bottom {
    background: #252525;
    padding: 20px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.footer-bottom a {
    color: #fff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    font-size: 12px;
    color: #999;
    transition: color 0.3s;
    text-transform: capitalize;
}

.footer-links a:hover {
    color: #ea623e;
}

/* ===== ACTIVE NAV STATE ===== */
.nav > ul > li > a.active {
    color: #ea623e;
}

/* ===== CLIENTS SECTION ===== */
#clients {
    padding: 70px 0;
    background: #fff;
}

.clients-heading {
    margin-bottom: 50px;
}

.clients-heading h2 {
    font-family: 'Merriweather', serif;
    font-size: 36px;
    font-weight: 400;
    color: #ea623e;
    margin-bottom: 10px;
    line-height: 1.3;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
}

.client-logo {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    border-color: #ea623e;
    box-shadow: 0 5px 15px rgba(234, 98, 62, 0.15);
    transform: translateY(-3px);
}

.client-logo img {
    max-width: 100%;
    max-height: 110px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ===== PAGE INTRO (shared by About/Contact/Services) ===== */
.page-intro {
    padding: 70px 0 50px;
    background: #f5f5f5;
}

.page-label {
    display: block;
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    font-weight: 400;
}

.page-intro h1 {
    font-family: 'Merriweather', serif;
    font-size: 42px;
    font-weight: 400;
    color: #ea623e;
    margin-bottom: 25px;
    line-height: 1.3;
}

.page-intro .intro-text {
    max-width: 1000px;
    margin: 0 auto 40px;
    font-size: 15px;
    color: #555;
    line-height: 1.9;
}

.about-illustration,
.contact-illustration,
.seo-illustration {
    max-width: 800px;
    margin: 30px auto 0;
    text-align: center;
}

.about-illustration svg,
.contact-illustration svg {
    width: 100%;
    height: auto;
    max-width: 800px;
}

.seo-illustration img {
    max-width: 350px;
    margin: 0 auto;
}

/* ===== TEAM SECTION (About page orange section) ===== */
.team-section {
    padding: 70px 20px;
    background: #f55b46;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.08' stroke-width='1.5'%3E%3Ccircle cx='60' cy='60' r='25'/%3E%3Ccircle cx='60' cy='60' r='12'/%3E%3Crect x='180' y='40' width='60' height='45' rx='4'/%3E%3Ccircle cx='220' cy='180' r='20'/%3E%3Cpath d='M50 200 L70 180 L90 200 L110 170'/%3E%3Cpolygon points='160,230 166,245 182,245 170,256 176,272 160,262 144,272 150,256 138,245 154,245'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 300px 300px;
    z-index: 0;
}

.team-section > .container {
    position: relative;
    z-index: 1;
}

.page-label-white {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.team-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
}

.team-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 60px 0 80px;
    background: #fff;
}

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

.contact-form-col h2,
.contact-info-col .contact-info-heading {
    font-family: 'Merriweather', serif;
    font-size: 30px;
    font-weight: 400;
    color: #333;
    margin-bottom: 5px;
}

.contact-info-col .contact-info-heading {
    padding-bottom: 15px;
    border-bottom: 2px solid #ea623e;
    margin-bottom: 30px;
}

.form-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

#contactForm .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 14px 18px;
    background: #f1f1f1;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    border-radius: 0;
    outline: none;
    transition: background 0.2s;
}

#contactForm .form-row input {
    margin-bottom: 0;
}

#contactForm input:focus,
#contactForm textarea:focus {
    background: #e8e8e8;
}

#contactForm textarea {
    resize: vertical;
    min-height: 180px;
    font-family: 'Open Sans', sans-serif;
}

.btn-contact-send {
    background: #f55b46;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background 0.2s;
    margin-top: 10px;
}

.btn-contact-send:hover {
    background: #d04103;
}

.btn-contact-send:disabled {
    background: #bbb;
    cursor: not-allowed;
}

/* Honeypot field — hidden from real users */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Contact form status message */
.form-status {
    margin-top: 18px;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}

.form-status-success {
    padding: 12px 16px;
    background: #e6f7ed;
    color: #1b7a3e;
    border-left: 4px solid #1b7a3e;
    border-radius: 3px;
}

.form-status-error {
    padding: 12px 16px;
    background: #fdecea;
    color: #b42318;
    border-left: 4px solid #b42318;
    border-radius: 3px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px dashed #ddd;
}

.contact-info-item:last-of-type {
    border-bottom: 2px solid #ea623e;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ea623e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-text {
    font-size: 16px;
    color: #333;
    font-family: 'Merriweather', serif;
}

.contact-text a {
    color: #333;
    transition: color 0.2s;
}

.contact-text a:hover {
    color: #ea623e;
}

.contact-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-sq {
    width: 44px;
    height: 44px;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s;
}

.social-fb { color: #3b5998; border-color: #3b5998; }
.social-tw { color: #1da1f2; border-color: #1da1f2; }
.social-gp { color: #dd4b39; border-color: #dd4b39; }
.social-rs { color: #f26522; border-color: #f26522; }
.social-ln { color: #0077b5; border-color: #0077b5; }
.social-pn { color: #bd081c; border-color: #bd081c; }

.social-sq:hover {
    color: #fff;
}
.social-fb:hover { background: #3b5998; }
.social-tw:hover { background: #1da1f2; }
.social-gp:hover { background: #dd4b39; }
.social-rs:hover { background: #f26522; }
.social-ln:hover { background: #0077b5; }
.social-pn:hover { background: #bd081c; }

/* ===== SERVICES PAGE CONTENT ===== */
.content-section {
    padding: 60px 0;
    background: #fff;
}

.content-section .content-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 32px;
    font-weight: 400;
    color: #ea623e;
    margin-bottom: 25px;
    text-align: center;
}

.content-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.content-section a {
    color: #ea623e;
}

.bullet-list {
    margin: 20px 0 20px 25px;
    list-style: disc;
}

.bullet-list li {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 12px;
    list-style: disc;
}

/* ===== LEGAL / POLICY PAGES ===== */
.legal-page .content-section h3 {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-top: 35px;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

.legal-page .content-section h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-page .content-section h2:first-child {
    margin-top: 0;
}

.legal-page .content-section p + h3,
.legal-page .content-section ul + h3 {
    margin-top: 40px;
}

/* Results Oriented Orange Bar */
.results-bar {
    background: #f55b46;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

.results-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.1' stroke-width='1.5'%3E%3Ccircle cx='60' cy='60' r='22'/%3E%3Ccircle cx='60' cy='60' r='12'/%3E%3Crect x='180' y='40' width='55' height='40' rx='4'/%3E%3Ccircle cx='220' cy='180' r='20'/%3E%3Cpath d='M50 200 L70 180 L90 200 L110 170'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 300px 300px;
}

.results-bar h2 {
    font-family: 'Merriweather', serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Ready CTA Orange Bars */
.cta-ready {
    background: #f55b46;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.cta-ready::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.1' stroke-width='1.5'%3E%3Ccircle cx='60' cy='60' r='22'/%3E%3Ccircle cx='220' cy='180' r='18'/%3E%3Cpath d='M50 200 L70 180 L90 200 L110 170'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 300px 300px;
}

.cta-ready > .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-ready h3 {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    font-style: italic;
    margin: 0;
}

.btn-cta-white {
    background: #fff;
    color: #f55b46;
    padding: 12px 35px;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid #fff;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.btn-cta-white:hover {
    background: transparent;
    color: #fff;
}

/* SEO Methodology items */
.methodology-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.method-item {
    padding: 20px 0;
    border-bottom: 1px dashed #ddd;
}

.method-item:last-child {
    border-bottom: none;
}

.method-item h4 {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.method-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    #banner h1 {
        font-size: 36px;
    }

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #about-section h2,
    #transform-brand h2,
    #trusted-partner h2 {
        font-size: 28px;
    }

    #cta-started h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 15px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1001;
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        align-items: stretch;
    }

    .nav > ul > li > a {
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu-btn {
        display: block;
    }

    #banner h1 {
        font-size: 28px;
    }

    #banner {
        min-height: 400px;
        padding: 60px 20px;
    }

    #banner p {
        font-size: 14px;
    }

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

    .blog-heading h3 {
        font-size: 28px;
    }

    #about-section h2,
    #transform-brand h2,
    #trusted-partner h2 {
        font-size: 24px;
    }

    #cta-started h2 {
        font-size: 24px;
    }

    .cta-started-inner {
        flex-direction: column;
    }

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

    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    /* Page intro */
    .page-intro h1 {
        font-size: 28px;
    }

    .team-section h2,
    .content-section h2 {
        font-size: 24px;
    }

    .results-bar h2 {
        font-size: 20px;
    }

    .cta-ready h3 {
        font-size: 20px;
    }

    /* Contact page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    #contactForm .form-row {
        grid-template-columns: 1fr;
    }

    /* Clients grid */
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    #banner h1 {
        font-size: 24px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
