:root {
    --c-text-dark: #2A3B4C;
    --c-blue-dark: #2D3748;
    --c-app-bg: #DCE6EF;
    --c-dig-main-bg: #E1EAF4;
    --c-dig-dark: #4A607C;
    --c-dig-l-green: #E6F5B4;
    --c-dig-magenta: #C72B57;
    --c-dig-red: #DB315B;
    --c-dig-l-blue: #E2EAF5;
    --c-dig-lime: #CEF29A;
    --home-cream: #F4ECE8;
    --home-orange: #E4A11F;
    --home-teal: #437986;
    --home-black: #241615;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: var(--c-text-dark);
    overflow-x: hidden;
}

button {
    font-family: inherit;
}

nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 52px);
    max-width: 1120px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    border-radius: 50px;
}

.nav-brand img {
    height: 35px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu {
    display: flex;
    gap: 24px;
    align-items: center;
}

.menu a {
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: #555;
    font-weight: 800;
    font-size: 0.92rem;
    transition: color 0.3s ease;
    padding: 6px 0;
    white-space: nowrap;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--c-blue-dark);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.menu a:hover,
.menu a.active {
    color: var(--c-blue-dark);
}

.menu a.active::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    background: rgba(0, 0, 0, 0.045);
    border-radius: 30px;
    padding: 4px;
    gap: 2px;
}

.lang-switcher a {
    text-decoration: none;
    color: #777;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 13px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.lang-switcher a.active {
    background: #fff;
    color: var(--c-blue-dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    width: 28px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1100;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: var(--c-blue-dark);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.page {
    display: none;
    padding-top: 112px;
}

.page.active {
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

h1,
h2,
h3 {
    font-weight: 900;
    color: var(--c-text-dark);
}

/* ================= ALL HERO SECTIONS SAME FULL WIDTH ================= */

.home-pdf-page {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 0 70px;
    background: #fff;
}

.home-hero,
.hero {
    position: relative;
    width: auto;
    min-height: 480px;
    height: auto;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: white;
    margin: 0 20px 40px 20px;
    padding: 80px 20px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.home-hero {
    background: url('../../home-hero.jpg') center center / cover no-repeat;
    margin-bottom: 62px;
}

.home-hero::before,
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.home-hero::before {
    background: rgba(15, 24, 30, 0.62);
}

.hero::before {
    background: rgba(45, 55, 72, 0.7);
}

.home-hero-content,
.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.home-hero-content h1,
.hero h1 {
    color: #fff;
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 6px 22px rgba(0,0,0,0.28);
}

.home-hero-content p,
.hero p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.35;
    font-weight: 500;
}

.hero-top-deco {
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 3;
}

.hero-deco-line {
    width: 150px;
    height: 1px;
    background: rgba(255,255,255,0.4);
}

#marketing .hero {
    background-image: url('../../bg-marketing.jpg');
}

#events .hero {
    background-image: url('../../bg-events.jpg');
}

#production .hero {
    background-image: url('../../bg-production.jpg');
}

#ip .hero {
    background-image: url('../../bg-ip.jpg');
}

/* ================= HOME PDF DESIGN ================= */

#home {
    background: #fff;
}

.home-journey {
    width: 100%;
    max-width: 1090px;
    height: 535px;
    margin: 0 auto 56px;
    position: relative;
}

.home-journey-photo {
    position: absolute;
    left: 42px;
    top: 0;
    width: 330px;
    height: 360px;
    border-radius: 22px;
    overflow: hidden;
    z-index: 1;
    background: #f4f4f4;
}

.home-journey-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-journey-title {
    position: absolute;
    right: 30px;
    top: 0;
    color: #2D3748;
    font-size: 67px;
    line-height: 0.93;
    font-weight: 900;
    text-align: right;
    letter-spacing: 0.3px;
    z-index: 2;
}

.journey-box {
    position: absolute;
    background: #F4F1F3;
    border: 2px solid #2D3748;
    border-radius: 25px;
    padding: 22px 25px;
    z-index: 4;
    box-shadow: 0 8px 0 rgba(0,0,0,0.08);
    overflow: visible;
}

.journey-box h3 {
    color: #111038;
    font-size: 22px;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 12px;
    padding-bottom: 11px;
    border-bottom: 1.4px solid rgba(17,16,56,0.65);
}

.journey-box p {
    color: #111038;
    font-size: 13.4px;
    line-height: 1.28;
    font-weight: 600;
}

.journey-founded {
    left: 285px;
    top: 64px;
    width: 355px;
    min-height: 143px;
}

.journey-early {
    left: 275px;
    top: 225px;
    width: 360px;
    min-height: 160px;
}

.journey-growth {
    right: 28px;
    top: 235px;
    width: 410px;
    min-height: 190px;
    background: var(--home-orange);
}

.journey-growth h3,
.journey-growth p {
    color: #fff;
}

.journey-growth h3 {
    border-bottom-color: rgba(255,255,255,0.76);
    font-size: 21px;
}

.journey-growth p {
    font-size: 12.7px;
    line-height: 1.24;
}

.journey-arrow,
.journey-arrow::before,
.journey-arrow::after {
    display: none !important;
}

.home-divisions {
    text-align: center;
    margin: 0 auto 58px;
    max-width: 1120px;
    padding: 0 18px;
}

.home-divisions h2 {
    color: var(--home-black);
    font-size: 66px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.home-division-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: stretch;
}

.home-division-card {
    background: var(--home-cream);
    border: 0;
    border-radius: 13px;
    overflow: hidden;
    min-height: 285px;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.home-division-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.14);
}

.home-division-card img {
    width: 100%;
    height: 132px;
    object-fit: cover;
    display: block;
}

.home-division-card-content {
    padding: 17px 12px 19px;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
}

.home-division-card h3 {
    color: var(--home-black);
    font-size: 19px;
    line-height: 0.96;
    font-weight: 900;
    margin-bottom: 13px;
    letter-spacing: 0.1px;
}

.home-division-card p {
    color: #3f3431;
    font-size: 12.4px;
    line-height: 1.22;
    font-weight: 600;
}

.home-contact {
    display: grid;
    grid-template-columns: 0.94fr 1.14fr;
    gap: 36px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
    padding: 0 18px;
}

.home-contact-visual {
    min-height: 322px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: url('../../home-contact.jpg') center center / cover no-repeat;
    padding: 28px 23px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.home-contact-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(50, 119, 132, 0.38);
    z-index: 1;
}

.home-contact-visual h2 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 49px;
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: -1px;
}

.home-contact-form h3 {
    color: #2D3748;
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 18px;
}

.home-form-group {
    margin-bottom: 15px;
}

.home-form-group label {
    display: block;
    color: #1e1e1e;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 7px;
}

.home-form-group input,
.home-form-group textarea {
    width: 100%;
    border: 1px solid #777;
    border-radius: 3px;
    padding: 10px 11px;
    background: #fff;
    outline: none;
    font-size: 14px;
}

.home-form-group textarea {
    height: 74px;
    resize: none;
}

.home-submit {
    width: 100%;
    border: 0;
    background: #2D3748;
    color: #241615;
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.25s;
}

.home-submit:hover {
    color: #fff;
    background: #1f2734;
}

.home-note {
    margin-top: 9px;
    text-align: center;
    color: #303030;
    font-size: 8px;
    font-weight: 500;
}

/* ================= OLD PAGES ================= */

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.approach-card {
    background: var(--c-app-bg);
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.approach-card:hover {
    transform: translateY(-5px);
}

.approach-icon-img {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
    display: inline-block;
}

.approach-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.approach-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 600;
    color: #4A5B6C;
}

.digital-wrapper {
    margin-top: 80px;
}

.digital-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.dig-main-card {
    background: var(--c-dig-main-bg);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    grid-row: span 2;
    padding: 20px;
}

.dig-main-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 15px 40px 40px;
    flex-grow: 1;
    min-height: 350px;
}

.dig-main-card h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 2.3rem;
    text-align: center;
    line-height: 1.1;
    color: var(--c-text-dark);
}

.dig-mini-card {
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    transition: transform 0.2s;
}

.dig-mini-card:hover {
    transform: scale(1.03);
}

.dig-mini-card h3 {
    font-size: 1.1rem;
    margin-top: 15px;
    line-height: 1.3;
    font-weight: 800;
}

.digital-icon-img {
    height: 85px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.plus-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.badge-white-blue {
    background: #fff;
    color: var(--c-dig-dark);
}

.badge-magenta-white {
    background: var(--c-dig-magenta);
    color: #fff;
}

.badge-white-magenta {
    background: #fff;
    color: var(--c-dig-magenta);
}

.badge-white-red {
    background: #fff;
    color: var(--c-dig-red);
}

.badge-blue-white {
    background: var(--c-dig-dark);
    color: #fff;
}

.bg-perf {
    background: var(--c-dig-dark);
    color: white;
}

.bg-perf h3 {
    color: white;
}

.bg-soc {
    background: var(--c-dig-l-green);
    color: var(--c-text-dark);
}

.bg-seo {
    background: var(--c-dig-magenta);
    color: white;
}

.bg-seo h3 {
    color: white;
}

.bg-inf {
    background: var(--c-dig-red);
    color: white;
}

.bg-inf h3 {
    color: white;
}

.bg-email {
    background: var(--c-dig-l-blue);
    color: var(--c-text-dark);
}

.bg-life {
    background: var(--c-dig-lime);
    color: var(--c-text-dark);
}

.traditional-sec {
    position: relative;
    padding: 100px 20px;
    background: #e2f1cd;
    margin: 40px 20px;
    border-radius: 20px;
    text-align: center;
}

.traditional-sec h2 {
    color: var(--c-blue-dark);
    font-size: 3rem;
    margin-bottom: 40px;
}

.trad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.trad-card {
    background: rgba(255, 255, 255, 0.85);
    padding: 30px 20px;
    border-radius: 15px;
    color: #2d6a4f;
    font-weight: 600;
}

.strategy-sec {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--c-blue-dark);
    padding: 60px 40px;
    margin: 40px 20px;
    border-radius: 30px;
}

.strategy-title-box {
    flex: 1;
    padding-right: 30px;
}

.strategy-title-box h2 {
    color: #fff;
    font-size: 2.2rem;
}

.strategy-pills {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.strat-pill {
    background: #e2f1cd;
    color: var(--c-blue-dark);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    width: auto;
}

.strat-pill.red {
    background: var(--c-dig-magenta);
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    gap: 30px;
    margin-top: 40px;
}

.serv-title {
    background: #000;
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    text-align: center;
    padding: 40px;
    font-weight: 800;
}

.serv-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.serv-box h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.serv-box p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-works {
    text-align: center;
    margin-top: 80px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.why-card {
    background: #f8f9fa;
    padding-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

.why-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
}

.why-card h3 {
    padding: 0 12px;
}

.why-card p {
    padding: 8px 12px 0;
    color: #555;
    line-height: 1.45;
}

.prod-layout {
    display: flex;
    gap: 60px;
    margin-top: 40px;
    align-items: flex-start;
}

.prod-img {
    flex: 1;
    border-radius: 30px 120px 30px 30px;
    overflow: hidden;
    height: 550px;
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prod-content {
    flex: 1.2;
}

.prod-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
}

.dark-btn {
    background: var(--c-blue-dark);
    color: white;
    padding: 15px 40px;
    border-radius: 15px;
    font-size: 2.2rem;
    font-weight: 800;
    display: inline-block;
    letter-spacing: 1px;
}

.dark-btn.offset {
    margin-left: 50px;
    margin-top: 15px;
}

.pill-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.pill-grid div {
    text-align: center;
    padding: 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pill-blue {
    background: var(--c-app-bg);
    color: var(--c-blue-dark);
}

.pill-orange {
    background: #e88c30;
    color: white;
}

.ip-sec-1 {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.ip-sec-1 div {
    flex: 1;
}

.ip-sec-1 h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.05;
    margin-bottom: 22px;
}

.ip-sec-1 p {
    color: #4c5664;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 600;
}

.ip-sec-1 img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    max-height: 400px;
}

.ip-sec-2 {
    display: flex;
    align-items: center;
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
}

.ip-dark-box {
    flex: 0 0 40%;
    background: var(--c-blue-dark);
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    min-height: 500px;
}

.ip-dark-box h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    text-align: center;
    color: white;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
}

.ip-image-pills {
    flex: 1;
    position: relative;
    background: url('../../bg-services.jpg') center/cover;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 1;
    min-height: 500px;
}

.ip-image-pills::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(45, 55, 72, 0.85);
}

.ip-pill {
    position: relative;
    z-index: 2;
    background: #DCE6EF;
    color: var(--c-blue-dark);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 800;
    width: 80%;
    max-width: 450px;
    text-align: center;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.contact-wrap {
    display: flex;
    gap: 40px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    margin: 60px 20px;
    align-items: center;
}

.contact-left {
    flex: 1;
    background: url('../../bg-contact.jpg') center/cover;
    border-radius: 15px;
    padding: 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.contact-left h2 {
    font-size: 3rem;
    color: white;
    z-index: 2;
    position: relative;
}

.contact-right {
    flex: 1;
}

.contact-right h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.btn-submit {
    width: 100%;
    background: var(--c-blue-dark);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #1f2734;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1120px) {
    nav {
        max-width: 1040px;
    }

    .menu {
        gap: 18px;
    }

    .menu a {
        font-size: 0.84rem;
    }

    .nav-links-wrapper {
        gap: 18px;
    }

    .lang-switcher a {
        padding: 8px 10px;
    }

    .home-journey {
        transform: scale(0.92);
        transform-origin: top center;
        margin-bottom: 10px;
    }
}

@media (max-width: 950px) {
    nav {
        top: 10px;
        width: calc(100% - 28px);
        padding: 10px 20px;
    }

    .nav-links-wrapper {
        position: fixed;
        top: -10px;
        right: -14px;
        width: 78vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 38px;
        transform: translateX(110%);
        transition: transform 0.35s ease-in-out;
        border-radius: 0;
    }

    .nav-links-wrapper.active {
        transform: translateX(0);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .menu {
        flex-direction: column;
        gap: 28px;
    }

    .menu a {
        font-size: 1.18rem;
    }

    .hamburger-menu {
        display: flex;
    }

    .page {
        padding-top: 92px;
    }

    .home-pdf-page {
        padding: 0 0 55px;
    }

    .home-hero,
    .hero {
        min-height: 430px;
        margin: 0 14px 45px 14px;
        padding: 70px 16px;
    }

    .home-hero-content h1,
    .hero h1 {
        font-size: 2.8rem;
    }

    .home-hero-content p,
    .hero p {
        font-size: 1rem;
    }

    .home-journey {
        transform: none;
        height: auto;
        max-width: 720px;
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin: 0 auto 58px;
        padding: 0 14px;
    }

    .home-journey-photo,
    .home-journey-title,
    .journey-box {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: 100%;
        height: auto;
    }

    .home-journey-title {
        order: 1;
        text-align: center;
        font-size: 52px;
        line-height: 0.95;
        margin-bottom: 4px;
    }

    .home-journey-photo {
        order: 2;
        height: 360px;
    }

    .journey-founded {
        order: 3;
    }

    .journey-early {
        order: 4;
    }

    .journey-growth {
        order: 5;
    }

    .home-divisions h2 {
        font-size: 50px;
    }

    .home-division-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .home-contact {
        grid-template-columns: 1fr;
    }

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

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

    .dig-main-card {
        grid-column: span 2;
    }

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

    .prod-layout,
    .ip-sec-1 {
        flex-direction: column;
        gap: 30px;
    }

    .prod-img {
        height: 400px;
        width: 100%;
    }

    .dark-btn {
        font-size: 1.8rem;
    }

    .dark-btn.offset {
        margin-left: 0;
    }

    .ip-sec-2 {
        flex-direction: column;
        align-items: stretch;
    }

    .ip-dark-box {
        flex: 1;
        min-height: auto;
        padding: 40px 20px;
    }

    .ip-dark-box h2 {
        white-space: normal;
        font-size: 2.2rem;
    }

    .ip-image-pills {
        flex: 1;
        min-height: auto;
    }

    .ip-pill {
        width: 100%;
    }

    .strategy-sec {
        flex-direction: column;
        text-align: center;
    }

    .strategy-title-box {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .strategy-pills {
        align-items: center;
    }

    .contact-wrap {
        flex-direction: column;
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .home-hero,
    .hero {
        min-height: 400px;
        border-radius: 18px;
        margin: 0 10px 35px 10px;
        padding: 60px 15px;
    }

    .home-hero-content h1,
    .hero h1 {
        font-size: 2.2rem;
    }

    .home-hero-content p,
    .hero p {
        font-size: 0.92rem;
    }

    .home-journey-title {
        font-size: 42px;
    }

    .home-journey-photo {
        height: 300px;
        border-radius: 20px;
    }

    .journey-box {
        border-radius: 22px;
        padding: 20px;
    }

    .journey-box h3 {
        font-size: 20px;
    }

    .journey-box p {
        font-size: 13px;
    }

    .home-divisions h2 {
        font-size: 40px;
    }

    .home-division-grid {
        grid-template-columns: 1fr;
    }

    .home-division-card img {
        height: 170px;
    }

    .home-contact-visual {
        min-height: 300px;
    }

    .home-contact-visual h2 {
        font-size: 39px;
    }

    .home-contact-form h3 {
        font-size: 34px;
    }

    .container {
        padding: 20px 15px;
    }

    .hero-deco-line {
        display: none;
    }

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

    .dig-main-card {
        grid-column: span 1;
    }

    .trad-grid,
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dark-btn {
        font-size: 1.5rem;
    }

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

    .strategy-sec {
        padding: 40px 20px;
    }

    .contact-left h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 430px) {
    .trad-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-content h1,
    .hero h1 {
        font-size: 2rem;
    }
}
