/* ============================================
   TRIDENT SHELL — Light & Clean Theme
   ============================================ */

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Design Tokens */
:root {
    --gold: #946B2D;
    --gold-hover: #B8860B;
    --gold-dim: rgba(148, 107, 45, 0.06);
    --gold-tint: rgba(148, 107, 45, 0.1);
    --gold-border: rgba(148, 107, 45, 0.18);

    --bg: #FFFFFF;
    --bg-raised: #F7F7F8;
    --bg-card: #FFFFFF;
    --bg-dark: #1A1A1F;
    --bg-dark-card: #24242A;

    --border: rgba(0, 0, 0, 0.07);
    --border-strong: rgba(0, 0, 0, 0.12);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);

    --text: #18181B;
    --text-secondary: #52525B;
    --text-muted: #A1A1AA;
    --text-on-dark: #F4F4F5;
    --text-on-dark-muted: #A1A1AA;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1100px;
    --radius: 12px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Utility */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ---- NAVIGATION ---- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--gold);
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--gold);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(148, 107, 45, 0.2);
}

/* Compliance Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    font-family: var(--font);
    padding: 0;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
    color: var(--text);
}

.nav-dropdown-toggle .chevron {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .chevron,
.nav-dropdown.open .chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: var(--gold-dim);
    color: var(--text);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.bar {
    width: 22px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--gold-dim) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(148, 107, 45, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    color: var(--text);
}

.hero-title .gold {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 460px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-logo {
    width: 320px;
    height: auto;
    filter: drop-shadow(0 8px 40px rgba(148, 107, 45, 0.12));
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--gold);
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(148, 107, 45, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-strong);
    padding: 11px 27px;
}

.btn-secondary:hover {
    color: var(--text);
    border-color: var(--text-muted);
    background: var(--bg-raised);
}

.btn-text {
    background: none;
    border: none;
    color: var(--gold);
    font-weight: 500;
    padding: 0;
    gap: 6px;
    font-size: 14px;
}

.btn-text:hover {
    color: var(--gold-hover);
}

.btn-text .arrow {
    transition: transform 0.2s ease;
}

.btn-text:hover .arrow {
    transform: translateX(3px);
}

/* ---- SECTION COMMON ---- */
section {
    padding: 120px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.3px;
    margin-bottom: 16px;
    color: var(--text);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ---- SERVICES ---- */
.services {
    background: var(--bg-raised);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 20px;
    color: var(--gold);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
}

.service-list li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

/* ---- METHODOLOGY ---- */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.method-step {
    text-align: center;
    position: relative;
}

.method-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    right: -12px;
    width: 24px;
    height: 1px;
    background: var(--gold-border);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
}

.method-step h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.method-step p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---- ABOUT / TEAM ---- */
.about {
    background: var(--bg-raised);
}

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

.about-content .section-label,
.about-content .section-title,
.about-content .section-subtitle {
    text-align: left;
}

.about-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 24px;
}

.cert-badges {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
    line-height: 1.1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* ---- CONTACT ---- */
.contact-layout {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.contact-card i {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 16px;
}

.contact-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-card a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-card a:hover {
    color: var(--gold-hover);
}

/* ---- FOOTER (dark for contrast) ---- */
.footer {
    padding: 48px 0;
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

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

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

.footer-logo-icon {
    width: 28px;
    height: 28px;
    filter: brightness(1.3);
}

.footer-logo span {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    color: var(--gold-hover);
}

.footer-text {
    font-size: 13px;
    color: var(--text-on-dark-muted);
    text-align: right;
}

.footer-text p {
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-on-dark-muted);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--gold);
    color: #FFFFFF;
}

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

.footer-links a {
    font-size: 13px;
    color: var(--text-on-dark-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-on-dark);
}

/* ---- ANIMATIONS ---- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- BLOG STYLES ---- */
.blog-header {
    padding: 140px 0 60px 0;
    text-align: center;
    background: var(--bg-raised);
}

.blog-content {
    padding: 60px 0 120px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.blog-post {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.blog-post.featured {
    border-color: var(--gold-border);
}

.post-header {
    padding: 36px 36px 20px;
}

.post-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.post-category {
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-date {
    color: var(--text-muted);
    font-size: 13px;
}

.post-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
    line-height: 1.3;
}

.post-excerpt {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.post-content {
    padding: 0 36px;
}

.post-content h3 {
    color: var(--gold);
    font-size: 18px;
    margin: 28px 0 12px 0;
    font-weight: 600;
}

.post-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 15px;
}

.post-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.post-content li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.post-content a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}

.post-content a:hover {
    color: var(--gold-hover);
}

.post-footer {
    padding: 20px 36px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    margin-top: 28px;
}

.post-author {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

.post-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: var(--gold-dim);
    color: var(--gold);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
}

.blog-sidebar {
    padding-top: 0;
}

.sidebar-widget {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px 24px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gold-border);
}

.sidebar-widget p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.recent-posts {
    list-style: none;
}

.recent-post-link {
    display: block;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left 0.2s ease;
}

.recent-post-link:last-child {
    border-bottom: none;
}

.recent-post-link:hover {
    padding-left: 8px;
}

.recent-post-title {
    display: block;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.4;
}

.recent-post-date {
    color: var(--text-muted);
    font-size: 12px;
}

.categories {
    list-style: none;
}

.categories li {
    margin-bottom: 10px;
}

.categories a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.categories a:hover {
    color: var(--gold);
}

/* ---- PRIVACY POLICY ---- */
.privacy-policy {
    padding: 140px 0 80px 0;
    min-height: 100vh;
}

.policy-content {
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-meta {
    background: var(--bg-raised);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
    margin-bottom: 40px;
    color: var(--text-secondary);
    font-size: 14px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: var(--gold);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gold-border);
}

.policy-section p {
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 15px;
}

.policy-section ul {
    margin: 12px 0;
    padding-left: 20px;
}

.policy-section li {
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.policy-section a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

.policy-section a:hover {
    color: var(--gold-hover);
}

.contact-info {
    background: var(--bg-raised);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-top: 15px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info i {
    color: var(--gold);
    width: 20px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .methodology-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .method-step:not(:last-child)::after {
        display: none;
    }

    .about-layout {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 12px 0;
        font-size: 16px;
    }

    .nav-menu .nav-cta {
        margin-top: 16px;
        text-align: center;
        justify-content: center;
    }

    .nav-dropdown-toggle {
        font-size: 16px;
        padding: 12px 0;
        display: block;
    }

    .nav-dropdown-toggle .chevron {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        min-width: unset;
        display: none;
        background: transparent;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu a {
        padding: 8px 0;
        font-size: 15px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        order: -1;
    }

    .floating-logo {
        width: 200px;
    }

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

    .methodology-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .section-title {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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

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

    .post-header,
    .post-content,
    .post-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .post-title {
        font-size: 22px;
    }

    .post-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 11px 22px;
        font-size: 13px;
    }

    .section-title {
        font-size: 26px;
    }
}
