/* =========================================
   ATTICUS SOURCING — PREMIUM DESIGN SYSTEM
   ========================================= */

/* --- Variables --- */
:root {
    --navy: #0a1628;
    --navy-light: #1a2d4a;
    --navy-mid: #243b5c;
    --orange: #f97316;
    --orange-light: #fb923c;
    --green: #22c55e;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --whatsapp: #25D366;
    --border: #e5e7eb;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --container: 1200px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* =========================================
   NAVIGATION
   ========================================= */
.nav-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.42);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.14);
}
.nav-bar .container {
    max-width: 1200px;
}
.nav-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav-logo img {
    width: 36px;
    height: 36px;
    max-width: 40px;
    max-height: 40px;
    flex-shrink: 0;
}
.logo-mark {
    width: 36px;
    height: 36px;
    max-width: 36px;
    max-height: 36px;
    background: var(--navy);
    color: var(--orange);
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: var(--font-sans);
    flex-shrink: 0;
}
.nav-logo img.logo-mark {
    display: block;
    padding: 0;
    object-fit: contain;
    background: transparent;
}
.logo-icon {
    width: 36px;
    height: 36px;
    max-width: 36px;
    max-height: 36px;
    display: block;
    flex-shrink: 0;
    border-radius: 8px;
}
.logo-text {
    font-weight: 700;
    font-size: 17px;
    color: var(--white);
    letter-spacing: -0.01em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active {
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--orange);
}
.nav-mobile-panel,
.nav-mobile-panel[hidden] { display: none !important; }
.nav-mobile-action { display: none; }
.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white) !important;
    background: var(--orange);
    padding: 0 18px;
    border-radius: 8px;
    transition: background 0.2s;
}
.btn-nav:hover { background: var(--orange-light) !important; }
.btn-whatsapp-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 42px;
    font-size: 14px;
    font-weight: 700;
    color: var(--whatsapp);
    padding: 0 18px;
    border: 1.5px solid var(--whatsapp);
    border-radius: 8px;
    transition: all 0.2s;
}
.btn-whatsapp-sm:hover {
    background: var(--whatsapp);
    color: var(--white);
}
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: max(760px, 85vh);
    margin-top: -68px;
    padding: 150px 0 96px;
    background-image: url("../images/hero/hero-homepage.webp");
    background-size: cover;
    background-position: 70% center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 37, 64, 0.94) 0%, rgba(10, 37, 64, 0.84) 34%, rgba(10, 37, 64, 0.48) 58%, rgba(10, 37, 64, 0.12) 100%);
    z-index: 1;
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: clamp(90px, 7.5vw, 120px);
    padding-right: 32px;
}
.hero-content {
    max-width: 600px;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 16px;
}
.hero-headline {
    font-family: var(--font-sans);
    font-size: clamp(4rem, 5.3vw, 4.75rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: 0;
    margin-bottom: 24px;
}
.hero-sub {
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 12px;
}
.hero-sub strong { color: var(--orange); }
.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.86);
    margin-bottom: 24px;
    max-width: 600px;
}
.hero-bullets {
    display: grid;
    gap: 10px;
    margin-bottom: 34px;
    max-width: 560px;
}
.hero-bullets li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.94);
    line-height: 1.5;
}
.hero-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-btns a {
    min-width: 176px;
    justify-content: center;
}
.hero .btn-whatsapp-lg {
    color: var(--white);
    background: rgba(10, 22, 40, 0.34);
    border-color: rgba(255,255,255,0.72);
}
.hero .btn-whatsapp-lg:hover {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
    color: var(--white);
}
.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    background: var(--orange);
    padding: 14px 28px;
    border-radius: 10px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary-lg:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249,115,22,0.35);
}
.btn-whatsapp-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--whatsapp);
    background: var(--white);
    padding: 14px 28px;
    border-radius: 10px;
    border: 2px solid var(--whatsapp);
    transition: all 0.2s;
}
.btn-whatsapp-lg:hover {
    background: var(--whatsapp);
    color: var(--white);
    transform: translateY(-1px);
}
.btn-light {
    color: var(--white);
    background: var(--orange);
    border-color: var(--orange);
}
.btn-light:hover {
    background: var(--orange-light);
    border-color: var(--orange-light);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 10px 22px;
    border-radius: 8px;
    transition: all 0.2s;
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
    padding: 64px 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--border);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.trust-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
.trust-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: var(--gray-100);
}
.trust-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin: 18px 18px 8px;
}
.trust-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.55;
    margin: 0 18px 22px;
}

/* =========================================
   SECTION COMMON
   ========================================= */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.section-subtitle {
    font-size: 16px;
    color: var(--gray-500);
}

/* =========================================
   SERVICES
   ========================================= */
.services-section {
    padding: 96px 0 104px;
    background: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-img {
    width: 100%;
    height: 205px;
    object-fit: cover;
    background: var(--gray-100);
}
.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    padding: 22px 22px 8px;
}
.service-card p {
    font-size: 14px;
    color: var(--gray-600);
    padding: 0 22px 18px;
    line-height: 1.6;
}
.service-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    padding: 0 22px 24px;
    transition: color 0.2s;
}
.service-link:hover { color: var(--orange-light); }

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works {
    padding: 104px 0;
    background: var(--white);
}
.steps-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.step-item {
    text-align: left;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.step-num {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: 0.05em;
    margin: 20px 20px 10px;
}
.step-img-wrap {
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
    aspect-ratio: 4/3;
}
.step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--gray-100);
}
.step-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 20px 8px;
}
.step-item p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0 20px 22px;
    line-height: 1.6;
}
.step-connector {
    display: none;
}

/* =========================================
   ABOUT ATTICUS
   ========================================= */
.about-atticus {
    padding: 104px 0;
    background: var(--gray-50);
}
.about-grid {
    display: grid;
    grid-template-columns: minmax(360px, 460px) minmax(0, 1fr);
    gap: 76px;
    align-items: center;
}
.about-portrait {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--gray-200);
    box-shadow: var(--shadow-lg);
}
.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 14px;
}
.about-content .section-title {
    color: var(--navy);
    text-align: left;
    margin: 0 0 24px;
    max-width: 680px;
}
.about-intro {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.7;
    max-width: 680px;
}
.about-advantages {
    margin: 28px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-advantages li {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-left: 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.55;
}
.about-advantages li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}
.signature-block {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 16px;
}
.signature-img {
    width: 80px;
    height: auto;
    opacity: 0.8;
}
.signature-name {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 20px;
    color: var(--white);
}
.signature-title {
    font-size: 12px;
    color: var(--gray-400);
}

/* =========================================
   INDUSTRIES
   ========================================= */
.industries-section {
    padding: 104px 0;
    background: var(--gray-50);
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.industry-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.industry-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s;
    background: var(--gray-200);
}
.industry-content {
    padding: 22px;
}
.industry-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.industry-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 18px;
}
.industry-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    transition: color 0.2s;
}
.industry-link:hover { color: var(--orange-light); }
.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.industry-card:hover .industry-img { transform: scale(1.03); }

/* =========================================
   RECENT PROJECTS
   ========================================= */
.projects-section {
    padding: 100px 0;
    background: var(--white);
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.project-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.3s;
}
.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.project-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: var(--gray-100);
}
.project-info {
    padding: 24px;
}
.project-meta {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    margin-bottom: 8px;
    display: block;
}
.project-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
}
.project-info p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 14px;
    line-height: 1.5;
}
.project-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    transition: color 0.2s;
}
.project-link:hover { color: var(--orange-light); }

/* =========================================
   ARTICLES
   ========================================= */
.articles-section {
    padding: 100px 0;
    background: var(--gray-50);
}
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.article-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.article-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--gray-100);
}
.article-body {
    padding: 20px;
}
.article-date {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: 8px;
    display: block;
}
.article-body h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.4;
}
.article-read {
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
}

/* =========================================
   FINAL CTA
   ========================================= */
.cta-final {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 420px;
    padding: 96px 0;
    background-image: url("../images/cta/factory-shipping-cta.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    text-align: left;
}
.cta-final::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.78) 48%, rgba(10,22,40,0.48) 100%);
}
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}
.cta-headline {
    max-width: 720px;
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0;
    margin-bottom: 16px;
    line-height: 1.08;
}
.cta-sub {
    max-width: 720px;
    font-size: 17px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 34px;
    line-height: 1.7;
}
.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.cta-final .btn-whatsapp-lg {
    color: var(--white);
    background: rgba(10, 22, 40, 0.34);
    border-color: rgba(255,255,255,0.72);
}
.cta-final .btn-whatsapp-lg:hover {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
    color: var(--white);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--navy);
    padding: 64px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.footer-logo .logo-text { color: var(--white); }
.footer-tagline {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.6;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col li,
.footer-col a {
    font-size: 13px;
    color: var(--gray-400);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 12px;
    color: var(--gray-500);
}

.site-footer,
.footer.site-footer {
    background: var(--navy);
    color: var(--gray-300);
    padding: 48px 0 24px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(150px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
    align-items: start;
}

.site-footer .footer-brand {
    margin-bottom: 0;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--white);
    font-size: 17px;
    font-weight: 800;
}

.footer-logo-icon {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    display: block;
    flex: 0 0 40px;
    object-fit: contain;
    border-radius: 9px;
}
.site-footer img.footer-logo-icon {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
}

.footer-positioning {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.footer-description {
    max-width: 420px;
    margin-bottom: 14px;
    color: var(--gray-400);
    font-size: 13px;
    line-height: 1.55;
}

.footer-contact-list {
    display: grid;
    gap: 6px;
}

.footer-contact-list a,
.footer-bottom-links a {
    color: var(--gray-400);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-contact-list a:hover,
.footer-bottom-links a:hover {
    color: var(--orange);
}

.site-footer .footer-col h4 {
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.site-footer .footer-col ul {
    display: grid;
    gap: 8px;
}

.site-footer .footer-col li,
.site-footer .footer-col a {
    color: var(--gray-400);
    font-size: 13px;
}

.site-footer .footer-col a:hover {
    color: var(--orange);
}

.site-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: left;
}

.site-footer .footer-bottom p {
    margin: 0;
    color: var(--gray-500);
    font-size: 13px;
}

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

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 360px 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-cols { grid-template-columns: repeat(2, 1fr); }
    .site-footer .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-track { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-mobile-toggle { display: flex; }
    .nav-inner { height: 68px; gap: 16px; }
    .nav-mobile-panel.is-open {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        padding: 16px 24px;
        gap: 0;
    }
    .nav-mobile-panel.is-open a {
        color: var(--navy);
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-100);
    }
    .nav-mobile-panel.is-open .nav-mobile-action {
        display: block;
        margin-top: 10px;
        text-align: center;
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 12px 14px;
    }
    .nav-mobile-panel.is-open .nav-mobile-whatsapp {
        color: var(--whatsapp);
        border-color: rgba(37, 211, 102, 0.45);
    }
    .nav-mobile-panel.is-open .nav-mobile-quote {
        color: var(--white);
        background: var(--orange);
        border-color: var(--orange);
    }
    .nav-mobile-panel.is-open a:last-child { border-bottom: 0; }
    .hero {
        min-height: 680px;
        padding: 132px 0 64px;
        background-position: center top;
    }
    .hero::before {
        background: linear-gradient(90deg, rgba(10, 37, 64, 0.94) 0%, rgba(10, 37, 64, 0.82) 52%, rgba(10, 37, 64, 0.42) 100%);
    }
    .hero-grid {
        padding-left: 24px;
        padding-right: 24px;
    }
    .hero-content { max-width: 100%; }
    .hero-headline {
        font-size: clamp(2.625rem, 11vw, 3rem);
        line-height: 1.06;
    }
    .hero-desc { font-size: 16px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-portrait { aspect-ratio: 16/9; max-width: 400px; }
    .site-footer { padding: 56px 0 24px; }
    .site-footer .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .site-footer .footer-bottom { align-items: flex-start; flex-direction: column; }
    .steps-track { grid-template-columns: 1fr; }
    .services-grid,
    .industries-grid,
    .projects-grid,
    .articles-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .hero-btns { flex-direction: column; }
    .hero-btns a {
        width: 100%;
        justify-content: center;
    }
    .cta-final {
        min-height: 420px;
        padding: 72px 0;
        background-position: center;
    }
    .cta-final::before {
        background: rgba(10,22,40,0.82);
    }
    .cta-btns {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-btns a {
        width: 100%;
        justify-content: center;
    }
}
