/* ROOT COLORS */
:root {
    --lote-primary: #D4A2C6;
    --lote-secondary: #F36C40;
    --lote-tertiary: #3B603A;
    --lote-bg-yellow: #F9F1A5;
    --lote-bg-cream: #F5EDE2;
    --lote-dark: #1E1E1E;
    --lote-black: #000000;
    --lote-white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--lote-dark);
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--lote-bg-cream);
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0,0,0,0.1);
    height: 70px;
}

.logo {
    padding: 0 2rem;
    display: flex;
    align-items: center;
    border-right: 1px solid #ddd;
    height: 70px;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 45px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-left: auto;
}

.nav-links li {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    min-width: 180px;
    transition: background 0.3s ease;
}

.nav-links li:not(:first-child) {
    border-left: none;
}

.nav-links li:hover {
    background: var(--lote-tertiary);
}

.nav-links a {
    text-decoration: none;
    color: var(--lote-dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links li:hover a {
    color: white;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    border: none;
    min-width: auto;
    width: 100%;
    border-bottom: 1px solid #eee;
    background: white;
	
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    padding: 1rem 1.5rem;
    display: block;
    color: var(--lote-dark);
    text-align: left;
    font-size: 0.85rem;
}

.dropdown-menu li:hover {
    background: var(--lote-bg-cream);
}

.dropdown-menu li:hover a {
    color: var(--lote-tertiary);
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.nav-cta {
    background: var(--lote-primary);
    color: var(--lote-dark);
    padding: 0.6rem 2rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    margin: 15px 2rem;
    min-width: 180px;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: var(--lote-bg-yellow);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    margin-right: 1.5rem;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--lote-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile CTA in menu */
.mobile-cta {
    display: none !important;
    border: none !important;  /* Add this */
    background: transparent !important;  /* Add this */
}

.mobile-cta a {
    background: var(--lote-primary) !important;
    color: var(--lote-dark) !important;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    background: var(--lote-bg-yellow);
    padding: 120px 5% 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--lote-dark);
}

.rotating-word {
    display: inline-block;
    min-width: 520px;
    color: var(--lote-tertiary);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 500px;
    color: var(--lote-dark);
    font-weight: 500;
}

.hero-cta-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--lote-dark);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: 2px solid var(--lote-dark);
    cursor: pointer;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline {
    color: var(--lote-dark);
    background: transparent;
}

.btn-outline:hover {
    background: var(--lote-dark);
    color: var(--lote-bg-yellow);
}

.btn-dark {
    background: var(--lote-dark);
    color: white;
    border: 2px solid var(--lote-dark);
}

.btn-dark:hover {
    background: var(--lote-tertiary);
    border-color: var(--lote-tertiary);
}

.hero-blob {
    position: absolute;
    right: -10%;
    top: 10%;
    width: 700px;
    height: 700px;
    background: var(--lote-secondary);
    border-radius: 50% 40% 60% 50%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    right: 10%;
    top: 20%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* INTRO SECTION */
.intro {
    background: var(--lote-bg-cream);
    padding: 100px 5%;
    text-align: center;
}

.intro h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro p {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.circle-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SERVICES SECTION */
.services-section {
    background: var(--lote-tertiary);
    color: white;
    padding: 80px 5%;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    color: var(--lote-dark);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.service-card-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FEATURED INSIGHT SECTION */
.featured-insight {
    background: var(--lote-bg-yellow);
    padding: 100px 5%;
}

.insight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.insight-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.insight-content h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.insight-content p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* CLIENTS SECTION */
.clients {
    background: var(--lote-bg-cream);
    padding: 80px 5%;
    text-align: center;
}

.clients h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 3rem;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logo {
    height: 80px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* SERVICE PAGES */
.service-hero {
    background: var(--lote-bg-cream);
    padding: 120px 5% 80px;
}

.service-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.service-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--lote-dark);
    display: block;
    margin-bottom: 1rem;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.service-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.service-features {
    display: grid;
    gap: 2rem;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--lote-dark);
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.service-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-blob {
    position: absolute;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: var(--lote-secondary);
    border-radius: 50% 40% 60% 50%;
    z-index: 1;
}

.service-hero-image {
    position: relative;
    width: 80%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-insights {
    background: var(--lote-bg-yellow);
    padding: 100px 5%;
}

.service-insights h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
}

.featured-case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.case-study-content h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.case-study-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-attribution {
    font-style: italic;
    font-size: 0.95rem;
    color: #555;
}

.case-study-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CASE STUDY PAGES */
.case-hero {
    background: var(--lote-bg-cream);
    padding: 120px 5% 60px;
    text-align: center;
}

.case-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.case-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.case-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.case-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.case-client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.case-client-logo img {
    height: 50px;
}

.case-client-logo span {
    font-size: 2rem;
    font-weight: 900;
}

.case-feature-image {
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.case-feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.case-content {
    background: white;
    padding: 80px 5%;
}

.case-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.case-section {
    margin-bottom: 3rem;
}

.case-section h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.case-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.case-section p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.case-section ul {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.case-section li {
    margin-bottom: 0.8rem;
}

.case-quote {
    background: var(--lote-bg-yellow);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.case-quote blockquote {
    margin: 0;
}

.case-quote p {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.case-quote cite {
    font-style: italic;
    font-size: 1rem;
    color: #555;
}

.case-results {
    background: var(--lote-tertiary);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.case-results h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.result-item h3 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--lote-bg-yellow);
    margin-bottom: 0.5rem;
}

.result-item p {
    font-size: 1rem;
    margin: 0;
}

.related-cases {
    background: var(--lote-bg-cream);
    padding: 80px 5%;
    text-align: center;
}

.related-cases h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 3rem;
}

.related-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--lote-dark);
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-card-content {
    padding: 1.5rem;
}

.related-card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--lote-tertiary);
}

.case-cta {
    background: var(--lote-tertiary);
    color: white;
    padding: 80px 5%;
    text-align: center;
}

.case-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.case-cta h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.case-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* INSIGHTS PAGES */
.insights-hero {
    background: var(--lote-tertiary);
    color: white;
    padding: 120px 5% 80px;
    text-align: center;
}

.insights-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.insights-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.featured-article {
    background: var(--lote-bg-yellow);
    padding: 0;
}

.featured-article-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    text-decoration: none;
    color: var(--lote-dark);
}

.featured-article-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-article-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-category {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    color: var(--lote-tertiary);
}

.featured-article-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-article-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-time {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

.insights-listing {
    background: var(--lote-bg-cream);
    padding: 80px 5%;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.insight-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--lote-dark);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.insight-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-card-content {
    padding: 1.5rem;
}

.insight-card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.insight-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #888;
}

.insights-cta {
    background: var(--lote-tertiary);
    color: white;
    padding: 80px 5%;
    text-align: center;
}

.insights-cta h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.insights-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form .btn {
    white-space: nowrap;
}

/* ARTICLE PAGES */
.article-hero {
    background: var(--lote-bg-cream);
    padding: 120px 5% 60px;
    text-align: center;
}

.article-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.article-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    font-size: 0.9rem;
    color: #666;
}

.article-feature-image {
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.article-feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    background: white;
    padding: 80px 5%;
}

.article-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.article-intro {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--lote-tertiary);
}

.article-content-wrapper h2 {
    font-size: 2rem;
    font-weight: 900;
    margin: 3rem 0 1rem;
    line-height: 1.2;
}

.article-content-wrapper h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.article-content-wrapper p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.article-content-wrapper ul,
.article-content-wrapper ol {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.article-content-wrapper li {
    margin-bottom: 0.8rem;
}

.article-callout {
    background: var(--lote-bg-yellow);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.article-callout h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--lote-tertiary);
}

.article-callout p {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.article-footer {
    background: var(--lote-bg-cream);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
}

.article-footer p {
    margin-bottom: 1.5rem;
}

.related-articles {
    background: var(--lote-bg-cream);
    padding: 80px 5%;
}

.related-articles h2 {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
}

/* DISCOVERY SECTION */
.discovery {
    background: var(--lote-bg-cream);
    padding: 100px 5%;
}

/* ABOUT PAGE - FIXED BACKGROUNDS */
.about-hero {
    background: var(--lote-primary);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.about-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
}

.about-hero-blob {
    position: absolute;
    right: -10%;
    top: 10%;
    width: 700px;
    height: 700px;
    background: var(--lote-tertiary);
    border-radius: 50%;
    z-index: 1;
}

.about-story {
    background: var(--lote-bg-cream);
    padding: 100px 0;
}

.about-story-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-circle {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: var(--lote-secondary);
    border-radius: 50%;
}

.story-image {
    position: absolute;
    width: 60%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    background: white;
    padding: 100px 5%;
    text-align: center;
}

.about-stats h2 {
    font-size: 2rem;
    font-weight: 900;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item h3 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--lote-tertiary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
}

.about-people-first {
    background: var(--lote-bg-yellow);
    padding: 100px 0;
}

.about-people-first-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.people-first-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.people-first-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.people-first-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.people-first-circle {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: var(--lote-primary);
    border-radius: 50%;
}

.people-first-image {
    position: absolute;
    width: 60%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.people-first-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-values {
    background: var(--lote-bg-yellow);
    padding: 100px 5%;
    text-align: center;
}

.about-values h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.values-intro {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.value-item {
    background: var(--lote-bg-cream);
    padding: 2.5rem 2rem;
    border-radius: 20px;
}

.value-circle {
    width: 80px;
    height: 80px;
    background: var(--lote-primary);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-standards {
    background: white;
    padding: 80px 5%;
    text-align: center;
}

.about-standards h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 3rem;
}

.standards-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.standard-item {
    padding: 2rem;
    background: var(--lote-bg-cream);
    border-radius: 15px;
}

.standard-item p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-sdg {
    background: var(--lote-bg-cream);
    padding: 80px 5%;
    text-align: center;
}

.about-sdg h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.about-sdg p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.sdg-logos {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.sdg-logos img {
    height: 220px;
    width: auto;
}

.about-supporters {
    background: var(--lote-primary);
    padding: 80px 5%;
    text-align: center;
}

.about-supporters h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.about-supporters p {
    margin-bottom: 3rem;
}

.supporters-logos {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
}

.supporters-logos img {
    max-width: 100%;
    height: auto;
}

.supporters-logos a {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 80px;
}

.supporters-logos a img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .supporters-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-people {
    background: white;
    padding: 100px 5%;
    text-align: center;
}

.about-people h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.about-people > p {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.person-item {
    text-align: center;
}

.person-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
}

.person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.person-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.person-item p {
    font-size: 0.9rem;
    color: #666;
}

.about-advisory {
    background: var(--lote-bg-cream);
    padding: 80px 5%;
    text-align: center;
}

.about-advisory h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.about-advisory > p {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.advisory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta {
    background: var(--lote-tertiary);
    color: white;
    padding: 100px 5%;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* SERVICES OVERVIEW PAGE */
.services-overview-hero {
    background: var(--lote-bg-yellow);
    padding: 120px 5% 80px;
    text-align: center;
}

.services-overview-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.services-overview-hero p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.service-category {
    padding: 100px 0;
}

.service-category:nth-child(odd) {
    background: var(--lote-bg-cream);
}

.service-category:nth-child(even) {
    background: white;
}

.service-category-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-category-reverse .service-category-wrapper {
    direction: rtl;
}

.service-category-reverse .service-category-wrapper > * {
    direction: ltr;
}

.service-category-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-category-circle {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: var(--lote-primary);
    border-radius: 50%;
}

.service-category-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.service-category-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-list-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-list-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.services-sectors {
    background: white;
    padding: 100px 5%;
    text-align: center;
}

.services-sectors h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.services-sectors > p {
    margin-bottom: 3rem;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.sector-card {
    background: var(--lote-bg-cream);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--lote-dark);
    transition: transform 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-5px);
}

.sector-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.sector-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sector-card-content {
    padding: 2rem;
    text-align: left;
}

.sector-card-content h3 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.sector-card-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sector-link {
    font-weight: 600;
    color: var(--lote-tertiary);
}

.services-cta {
    background: var(--lote-tertiary);
    color: white;
    padding: 100px 5%;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* CASE STUDIES LISTING */
.case-studies-hero {
    background: var(--lote-tertiary);
    color: white;
    padding: 120px 5% 80px;
    text-align: center;
}

.case-studies-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.case-studies-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.case-studies-filter {
    background: var(--lote-bg-cream);
    padding: 2rem 5%;
    border-bottom: 1px solid #ddd;
}

.filter-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-container label {
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-container select {
    padding: 0.7rem 1rem;
    border: 2px solid var(--lote-dark);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    background: white;
    cursor: pointer;
}

.btn-reset {
    padding: 0.7rem 1.5rem;
    background: var(--lote-dark);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    margin-left: auto;
}

.btn-reset:hover {
    background: var(--lote-tertiary);
}

.case-studies-listing {
    background: var(--lote-bg-cream);
    padding: 60px 5% 100px;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.case-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--lote-dark);
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.case-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-card-content {
    padding: 1.5rem;
}

.case-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--lote-tertiary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.case-card-content h3 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.case-client {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--lote-tertiary);
    margin-bottom: 0.8rem;
}

.case-card-content > p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.case-read-more {
    font-weight: 600;
    color: var(--lote-dark);
}

.no-results {
    text-align: center;
    padding: 3rem;
    font-size: 1.1rem;
    color: #666;
}

/* CONTACT PAGE */
.contact-hero {
    background: var(--lote-primary);
    padding: 120px 5% 80px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-details-section {
    background: var(--lote-bg-cream);
    padding: 80px 5%;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--lote-tertiary);
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--lote-dark);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--lote-tertiary);
}

.contact-map {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* DISCOVERY SECTION */
.discovery {
    background: var(--lote-bg-cream);
    padding: 100px 5%;
}

.discovery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.discovery-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discovery-blob {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1;
    background: var(--lote-secondary);
    border-radius: 50%;
}

.discovery-image {
    position: absolute;
    width: 50%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
}

.discovery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discovery-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--lote-dark);
}

.discovery-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.discovery-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
    color: var(--lote-dark);
}

.contact-form {
    background: transparent;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--lote-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

input, textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

input:focus, textarea:focus {
    outline: 2px solid var(--lote-tertiary);
}

textarea {
    min-height: 120px;
    resize: vertical;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-submit {
    background: var(--lote-primary);
    color: var(--lote-dark);
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #c494b8;
}

/* FOOTER */
footer {
    background: #2a2a2a;
    color: white;
    padding: 60px 5% 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-brand h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.footer-brand p {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    color: var(--lote-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.certifications {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.cert-badge {
    height: 80px;
    width: auto;
}

.cert-badge img {
    height: 100%;
    width: auto;
}

.cert-text {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.4;
}

.footer-nav-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav-col a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav-col a:hover {
    color: var(--lote-primary);
}

.footer-acknowledgement {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.acknowledgement-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.flag-icon {
    width: 50px;
    height: auto;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.acknowledgement-text {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: left;
    font-size: 0.8rem;
    color: #666;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {	
    /* Show hamburger, hide desktop CTA */
    .hamburger {
        display: flex;
        align-self: center;  /* Center vertically */
        margin-right: 1.5rem;
    }
    
    .nav-cta { 
        display: none !important;  /* Force hide desktop CTA */
    }
    
    .mobile-cta {
        display: block !important;
        border: none !important;
        padding: 1rem 2rem !important;
		margin-top: 1rem;  /* Add this line */
    }
	
	.mobile-cta a {
        display: block;
        padding: 0.8rem 2rem !important;
        text-align: center;
        background: var(--lote-primary) !important;
        color: var(--lote-dark) !important;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: 2px solid var(--lote-primary) !important;
		width: auto;  /* Add this */
        max-width: 100%;  /* Add this */
    }
	
	.mobile-cta:hover {
        background: transparent !important;
    }
	
	.mobile-cta a:hover {
        background: var(--lote-bg-yellow) !important;
    }
    
    .logo {
        padding: 0 1.5rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    /* Mobile Menu Styles */
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--lote-bg-cream);
        flex-direction: column;
        align-items: stretch;
        padding: 2rem 0;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        overflow-y: auto;
        z-index: 1001;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        border: none;
        border-bottom: 1px solid #ddd;
        min-width: 100%;
        padding: 0;
		background: transparent !important; 
    }
    
    .nav-links li a {
        padding: 1rem 2rem;
        width: 100%;
        text-align: left;
        justify-content: flex-start;
    }
    
    .nav-links li:hover {
        background: transparent;
    }
    
    .nav-links li:hover a {
        color: var(--lote-tertiary);
    }
    
    /* Mobile Dropdown */
    .nav-dropdown .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: white;
        width: 100%;
        padding: 0;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: none;
    }
    
    /* Click to toggle dropdown on mobile */
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid #f0f0f0;
        background: white;
    }
    
    .dropdown-menu li a {
        padding: 0.8rem 2rem 0.8rem 3rem;
        color: var(--lote-dark);
    }
    
    .dropdown-menu li:hover {
        background: var(--lote-bg-cream);
    }
    
    /* Prevent body scroll when menu open */
    body.menu-open {
        overflow: hidden;
    }
    
    .hero {
        padding: 100px 5% 40px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .rotating-word {
        min-width: 320px;
    }
    
    .hero-blob,
    .hero-image {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .intro {
        padding: 60px 5%;
    }
    
    .intro h2 {
        font-size: 1.8rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-section {
        padding: 60px 5%;
    }
    
    .services-section h2 {
        font-size: 1.8rem;
    }
    
    .services-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-content {
        padding: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .service-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-intro {
        font-size: 1rem;
    }
    
    .service-blob {
        display: none;
    }
    
    .service-hero-image {
        width: 100%;
        height: 300px;
        border-radius: 20px;
    }
    
    .service-insights {
        padding: 60px 5%;
    }
    
    .service-insights h2 {
        font-size: 1.8rem;
    }
    
    .featured-case-study {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-study-content h3 {
        font-size: 1.5rem;
    }
    
    .case-study-image {
        height: 250px;
    }
    
    .case-hero {
        padding: 100px 5% 40px;
    }
    
    .case-hero h1 {
        font-size: 2.5rem;
    }
    
    .case-client-logo {
        flex-direction: column;
        gap: 1rem;
    }
    
    .case-section h2 {
        font-size: 1.5rem;
    }
    
    .case-quote {
        padding: 2rem;
    }
    
    .case-quote p {
        font-size: 1.2rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .related-cards {
        grid-template-columns: 1fr;
    }
    
    .case-cta h2 {
        font-size: 1.8rem;
    }
    
    .insights-hero {
        padding: 100px 5% 60px;
    }
    
    .insights-hero h1 {
        font-size: 2.5rem;
    }
    
    .featured-article-link {
        grid-template-columns: 1fr;
    }
    
    .featured-article-image {
        height: 300px;
    }
    
    .featured-article-content {
        padding: 2rem;
    }
    
    .featured-article-content h2 {
        font-size: 1.8rem;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        width: 100%;
    }
    
    .article-hero {
        padding: 100px 5% 40px;
    }
    
    .article-hero h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-intro {
        font-size: 1.1rem;
    }
    
    .article-content-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .article-callout {
        padding: 1.5rem;
    }
    
    .article-callout p {
        font-size: 1.1rem;
    }
    
    .article-footer {
        padding: 2rem;
    }
    
    .featured-insight {
        padding: 60px 5%;
    }
    
    .insight-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .insight-image {
        height: 250px;
    }
    
    .insight-content h3 {
        font-size: 1.5rem;
    }
    
    .clients {
        padding: 60px 5%;
    }
    
    .clients h2 {
        font-size: 1.5rem;
    }
    
    .client-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .client-logo {
        height: 60px;
    }
    
    /* About Page Mobile */
    .about-story-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-people-first-wrapper {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .standards-list {
        grid-template-columns: 1fr;
    }
    
    .people-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advisory-grid {
        grid-template-columns: 1fr;
    }
    
    .supporters-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Services Page Mobile */
    .service-category-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Page Mobile */
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 350px;
    }
    
    .discovery {
        padding: 60px 5%;
    }
    
    .discovery-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .discovery-content h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .btn-submit {
        width: 100%;
    }
    
    footer {
        padding: 40px 5% 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-nav-columns {
        grid-template-columns: 1fr;
    }
    
    .footer-brand h3 {
        font-size: 2rem;
    }
    
    .certifications {
        flex-wrap: wrap;
    }
    
    .cert-badge {
        height: 60px;
    }
    
    .acknowledgement-item {
        flex-direction: column;
    }
    
    .flag-icon {
        width: 40px;
    }
}

/* EXTRA SMALL MOBILE (412px and below) */
@media (max-width: 412px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .rotating-word {
        min-width: 260px;
    }
    
    .intro h2 {
        font-size: 1.5rem;
    }
    
    .services-section h2 {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-hero h1 {
        font-size: 1.7rem;
    }
    
    .service-insights h2 {
        font-size: 1.5rem;
    }
    
    .case-study-content h3 {
        font-size: 1.3rem;
    }
    
    .case-hero h1 {
        font-size: 2rem;
    }
    
    .case-cta h2 {
        font-size: 1.5rem;
    }
    
    .insights-hero h1 {
        font-size: 2rem;
    }
    
    .insights-hero p {
        font-size: 1rem;
    }
    
    .featured-article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-hero h1 {
        font-size: 1.7rem;
    }
    
    .article-intro {
        font-size: 1rem;
    }
    
    .article-content-wrapper h2 {
        font-size: 1.3rem;
    }
    
    .client-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .discovery-content h2 {
        font-size: 1.5rem;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
}

/* Section partial styles + circle removal live in /css/cms-sections.css */
