:root {
    --primary: #000000;
    --secondary: #1a1a1a;
    --accent: #0066cc;
    --accent-blue: #0071e3;
    --accent-hover: #0077ed;
    --text: #1d1d1f;
    --text-secondary: #86868b;
    --background: #ffffff;
    --background-alt: #f5f5f7;
    --border: #d2d2d7;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.15);
    --gradient-ai: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #0066cc 70%, rgba(0,102,204,0.3) 100%);
    --gradient-solutions: linear-gradient(135deg, rgba(0,102,204,0.05) 0%, #f5f5f7 50%, rgba(0,113,227,0.08) 100%);
    --glass-card: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0 auto;
    max-width: 700px;
}

.about-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

.about-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 60px 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.about-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.about-card h2 {
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 24px;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.about-card p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
}

.about-card strong {
    color: var(--accent);
}

.about-legacy {
    display: none;
}

.about-new {
    padding: 120px 0;
    background: #fafafa;
}

.about-introduction {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
}

.about-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.about-introduction-copy h2 {
    max-width: 720px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.about-introduction-text {
    padding-bottom: 5px;
}

.about-introduction-text p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.75;
}

.about-introduction-text strong {
    color: var(--text);
}

.about-story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.about-story-card {
    min-height: 300px;
    padding: 42px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.about-story-card-accent {
    background: #0b2747;
    color: #fff;
}

.about-story-card > span {
    display: block;
    margin-bottom: 28px;
    color: var(--accent);
    font-weight: 700;
}

.about-story-card-accent > span {
    color: #66c7ff;
}

.about-story-card h3 {
    margin-bottom: 18px;
    font-size: 30px;
    letter-spacing: -0.7px;
}

.about-story-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.75;
}

.about-story-card-accent p {
    color: rgba(255, 255, 255, 0.7);
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    background: #fff;
}

.about-pillars > div {
    padding: 32px;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.about-pillars > div:last-child {
    border-right: 0;
}

.about-pillars strong,
.about-pillars span {
    display: block;
}

.about-pillars strong {
    margin-bottom: 8px;
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
}

.about-pillars span {
    color: var(--text-secondary);
    font-size: 14px;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.value-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 16px;
    object-fit: cover;
}

.value-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.value-card p {
    font-size: 16px;
    opacity: 0.9;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-container img {
    height: 32px;
    width: auto;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: rgba(10, 10, 10, 0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 2px;
    background: var(--primary);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

nav.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

nav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

nav.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px 20px;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 102, 204, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 102, 204, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 700;
    letter-spacing: -2px;
    color: white;
    margin-bottom: 16px;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8), 0 0 20px rgba(255,255,255,0.1);
}

.hero p {
    font-size: clamp(18px, 2vw, 24px);
    color: white;
    font-weight: 400;
    letter-spacing: 0.25px;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.15s both;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

section:not(.hero) {
    position: relative;
}

section:not(.hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 20%, var(--accent-blue) 50%, var(--accent) 80%, transparent 100%);
    box-shadow: 0 0 30px var(--accent), 0 0 50px rgba(0,102,204,0.6);
    z-index: 10;
    border-radius: 2px;
}

section {
    padding: 140px 0;
}

.ai-section {
    padding: 100px 0;
}

.ai-section + .solutions {
    padding-top: 160px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}


.ai-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.ai-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 70%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(0, 102, 204, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.ai-section .section-header h2,
.ai-section .section-header p {
    color: var(--text);
}

.ai-section .section-header p {
    color: var(--text-secondary);
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.ai-text h3 {
    font-size: 32px;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.ai-text h4 {
    font-size: 22px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

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

.ai-text p b {
    color: var(--text);
    font-weight: 600;
}

.ai-image {
    max-width: 240px;
    margin-left: 80px;
    margin-top: -10px;



}

.ai-image img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}


.ai-image img:hover {
    transform: scale(1.02);
}

.solutions {
    background: var(--gradient-solutions);
    position: relative;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(0,102,204,0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(0,113,227,0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.solution-card {
    display: flex;
    flex-direction: column;
    background: var(--glass-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.solution-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2), 0 0 40px rgba(0,102,204,0.2);
    border-color: rgba(0,102,204,0.3);
}

.solution-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.solution-card:hover img {
    transform: scale(1.08);
}

.solution-card-content {
    padding: 28px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.solution-card-cta {
    text-align: center;
}

.solution-card-content a.cta-box {
    display: inline-block;
    padding: 0.85rem 1.3rem;
    margin-top: 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #0066ff, #00c6ff);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.solution-card-content a.cta-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #0051d4, #00a8d9);
}

.solution-card-content > a.cta-box,
.solution-card-content p:last-child {
    margin-top: auto;
}

.solution-card h3 {
    font-size: 19px;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

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

.solution-card p b {
    color: var(--text);
    font-weight: 600;
}


.insight {
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.insight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0, 102, 204, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 80% 20%, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.insight .section-header h2,
.insight .section-header p {
    color: var(--text);
}

.insight .section-header p {
    color: var(--text-secondary);
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.insight-card {
    display: flex;
    min-width: 0;
    min-height: 360px;
    padding: 18px 18px 28px;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    text-align: center;
    transition: all 0.4s ease;
}

.insight-card:hover {
    background: #fff;
    transform: translateY(-8px);
    border-color: rgba(0, 102, 204, 0.2);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.13);
}

.insight-card-icon {
    width: 100%;
    height: 230px;
    margin: 0 auto 24px;
    overflow: hidden;
    border-radius: 17px;
    background: #eef4fa;
}

.insight-card-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insight-card:hover .insight-card-icon img {
    transform: scale(1.04);
}

.insight-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.insight-card p {
    margin-top: auto;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service {
    background: var(--background-alt);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: white;
    padding: 48px;
    border-radius: 28px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

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

.service-card p b {
    color: var(--text);
}

.service-legacy,
.contact-legacy {
    display: none;
}

.home-services {
    background: #eceff3;
}

.home-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.home-service-card {
    display: flex;
    min-height: 300px;
    padding: 42px;
    flex-direction: column;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
}

.home-service-card h3 {
    margin-bottom: 16px;
    font-size: 32px;
    letter-spacing: -0.8px;
}

.home-service-card > p {
    margin-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.75;
}

.home-service-card ul {
    display: grid;
    gap: 12px;
    margin-bottom: 0;
    list-style: none;
}

.home-service-card li {
    position: relative;
    padding-left: 25px;
    color: #334155;
    font-size: 15px;
}

.home-service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
}

.home-service-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-top: auto;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.home-service-link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.home-service-link:hover::after {
    transform: translateX(5px);
}

.home-contact {
    background: #fafafa;
}

.home-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: 36px;
    align-items: start;
}

.home-partner-card,
.home-contact-card {
    padding: 42px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.home-partner-card h3,
.home-contact-card h3 {
    margin-bottom: 14px;
    font-size: 32px;
    letter-spacing: -0.8px;
}

.home-partner-intro {
    margin-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.home-partner-list {
    display: grid;
    gap: 0;
    list-style: none;
}

.home-partner-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 20px 0;
    border-bottom: 1px solid #e8edf2;
}

.home-partner-list li > span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

.home-partner-list strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.home-partner-list p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.55;
}

.home-contact-side {
    display: grid;
    gap: 28px;
}

.home-contact-card > ul {
    display: grid;
    gap: 0;
    margin: 28px 0;
    list-style: none;
}

.home-contact-card li {
    padding: 17px 0;
    border-bottom: 1px solid #e8edf2;
}

.home-contact-card li > span {
    display: block;
    margin-bottom: 4px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.home-contact-card a,
.home-contact-card p {
    color: var(--text);
    line-height: 1.55;
    text-decoration: none;
}

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

.home-contact .map-container {
    height: 310px;
}

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

.value-card h3 {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 700;
    text-align: center;
    margin: 0;
    letter-spacing: 1px;
}

.values {
    background: var(--gradient-ai);
    color: white;
}

.about-values {
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
    color: var(--text);
}

.about-values .value-card {
    background: #fff;
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.about-values .value-card:hover {
    background: #fff;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.13);
}

.about-values .value-card h3 {
    color: var(--text);
}

.values .section-header h2,
.values .section-header p {
    color: white;
}

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

.value-card {
    text-align: center;
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    transition: all 0.4s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-8px);
}

.value-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 20px;
    overflow: hidden;
}

.value-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-card h3 {
    font-size: 20px;
    letter-spacing: -0.3px;
}

.contact {
    background: var(--background);
}

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

.partner-panel {
    background: rgba(185, 185, 185, 0.253);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.partner-panel h3 {
    font-size: 32px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.partner-intro {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.partner-points {
    list-style: none;
    display: grid;
    gap: 18px;
}

.partner-points h4 {
    font-size: 18px;
    letter-spacing: -0.2px;
    margin-bottom: 6px;
}

.partner-points p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.contact-right {
    display: grid;
    gap: 36px;
    align-items: start;
}

.contact-info {
    background: rgba(185, 185, 185, 0.253);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    font-size: 16px;
}

.contact-details strong {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    font-weight: 500;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-page {
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 920px);
    gap: 40px;
    align-items: start;
    justify-content: center;
    max-width: 980px;
    margin: 0 auto;
}

.contact-form-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.contact-form-card {
    padding: 48px;
    background: #fff;
}

.contact-form-heading {
    margin-bottom: 36px;
}

.contact-form-heading span {
    display: block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-form-heading h2 {
    margin-bottom: 12px;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -1px;
}

.contact-form-heading p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-form {
    display: grid;
    gap: 22px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field label {
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #dbe3ed;
    border-radius: 14px;
    background: #f8fafc;
    color: #0f172a;
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input,
.form-field select {
    min-height: 52px;
    padding: 0 16px;
}

.form-field textarea {
    min-height: 160px;
    padding: 15px 16px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid,
.form-field input.is-invalid:focus,
.form-field select.is-invalid:focus,
.form-field textarea.is-invalid:focus {
    border-color: #dc2626;
    background: #fffafa;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #94a3b8;
}

.field-error {
    display: none;
    color: #b91c1c;
    font-size: 12px;
    line-height: 1.4;
}

.form-field input.is-invalid + .field-error {
    display: block;
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
}

.form-privacy input {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--accent);
}

.form-privacy input.is-invalid {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

.contact-submit {
    justify-self: start;
    padding: 16px 28px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #0066cc, #0071e3);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.25);
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 102, 204, 0.32);
}

.contact-submit:disabled {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-status {
    min-height: 24px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
}

.form-status:empty {
    display: none;
}

.form-status.is-success {
    color: #15803d;
}

.form-status.is-error {
    color: #b91c1c;
}

footer {
    background: #050505;
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand .logo-text {
    font-size: 24px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-column h5 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 14px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.sensor-section {
    background: var(--background);
}

.classification-section {
    padding: 100px 0;
    background: #fafafa;
}

.classification-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 64px;
    align-items: center;
}

.classification-image {
    width: 100%;
    max-width: 100%;
    justify-self: center;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.classification-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.classification-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.classification-content h2 {
    margin-bottom: 22px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -1.8px;
}

.classification-content p {
    max-width: 620px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.75;
}

.sensor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.sensor-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: all .3s ease;
}

.sensor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.sensor-card h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

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

.technology-hero-content {
    margin-top: 50px;
    text-align: center;
}

.sensor-section-header {
    margin-top: -80px;
    margin-bottom: 2rem;
}

.sensor-section .sensor-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1160px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem;
}

.sensor-section .sensor-card {
    flex: 0 1 250px;
    padding: 1rem;
    border: 1px solid #cccccc50;
    border-radius: 12px;
}

.sensor-section .sensor-card img {
    display: block;
    width: 230px;
    max-width: 100%;
    height: 180px;
    margin: 0 auto 1rem;
    object-fit: contain;
}

@media (max-width: 768px) {
    .sensor-section .sensor-grid {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .sensor-section .sensor-card {
        flex-basis: 100%;
        max-width: 320px;
    }
}

.technology-detail {
    padding: 48px 0;
    background: linear-gradient(180deg, #fff, #f7fbff);
}

.technology-header {
    margin-top: 20px;
    margin-bottom: 2rem;
}

.technology-title {
    margin-bottom: 1rem;
    text-align: center;
}

.technology-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.technology-image {
    flex: 1 1 380px;
    text-align: center;
}

.technology-image img {
    width: 260px;
    max-width: 100%;
    height: auto;
    border: 1px solid #cccccc50;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(20, 30, 60, 0.08);
}

.technology-content {
    flex: 1 1 420px;
}

.technology-content > h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.technology-description {
    color: #334155;
    line-height: 1.6;
}

.technology-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
    margin: 1.25rem 0;
    padding: 0;
    list-style: none;
}

.technology-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.technology-features .technology-feature-wide {
    grid-column: 1 / -1;
}

.technology-feature-description {
    color: #475569;
}

.solutions-intro {
    padding: 110px 0;
    background: var(--gradient-solutions);
}

.solutions-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.solutions-eyebrow,
.solution-category {
    display: block;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.solutions-intro-copy h2 {
    max-width: 720px;
    margin-bottom: 28px;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.solutions-intro-copy p {
    max-width: 720px;
    margin-bottom: 14px;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.75;
}

.solutions-intro-highlight {
    min-height: 420px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background: var(--gradient-ai);
    box-shadow: 0 28px 70px rgba(2, 12, 27, 0.2);
    color: #fff;
}

.solutions-intro-highlight img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.operational-services {
    padding: 110px 0;
    background: #eceff3;
}

.operational-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.operational-card {
    position: relative;
    padding: 38px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.operational-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 58px rgba(15, 23, 42, 0.12);
}

.operational-card-number {
    position: absolute;
    top: 22px;
    right: 28px;
    color: rgba(0, 102, 204, 0.12);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1;
}

.operational-card h3 {
    position: relative;
    margin-bottom: 16px;
    padding-right: 65px;
    font-size: 28px;
    letter-spacing: -0.6px;
}

.operational-card > p {
    margin-bottom: 26px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.operational-card h4 {
    margin: 24px 0 12px;
    color: #17324d;
    font-size: 14px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.operational-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    list-style: none;
}

.operational-card li {
    position: relative;
    padding-left: 19px;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}

.operational-card li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.solution-service {
    padding: 110px 0;
    background: #fff;
    scroll-margin-top: 72px;
}

.solution-service-blue {
    background: linear-gradient(135deg, #f5f9ff, #eef6ff);
}

.solution-service-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 70px;
    align-items: center;
}

.solution-service-reverse .solution-service-intro {
    order: 2;
}

.solution-service-reverse .solution-service-panel {
    order: 1;
}

.solution-number {
    display: block;
    margin-bottom: 20px;
    color: rgba(0, 102, 204, 0.14);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 0.85;
}

.solution-service-intro h2 {
    margin-bottom: 22px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.solution-service-intro > p:not(.solution-category) {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.75;
}

.solution-service-intro strong {
    display: block;
    padding-left: 18px;
    border-left: 3px solid var(--accent);
    color: #17324d;
    font-size: 18px;
    line-height: 1.55;
}

.solution-service-panel {
    padding: 42px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.solution-service-panel h3 {
    margin-bottom: 28px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.25;
    letter-spacing: -0.8px;
}

.solution-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    list-style: none;
}

.solution-feature-list li {
    position: relative;
    padding: 14px 14px 14px 42px;
    border-radius: 12px;
    background: #f7f9fc;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.solution-feature-list li::before {
    content: '✓';
    position: absolute;
    top: 13px;
    left: 15px;
    color: var(--accent);
    font-weight: 800;
}

.solution-panel-note {
    margin: 0 0 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.solution-feature-list + .solution-panel-note {
    margin: 26px 0 0;
    padding-top: 22px;
    border-top: 1px solid #e2e8f0;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .sensor-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 768px) {

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

    .sensor-card h3 {
        font-size: 26px;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

@media (max-width: 1200px) {
    .insight-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .solutions-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .solutions-intro-grid,
    .classification-layout,
    .solution-service-grid {
        grid-template-columns: 1fr;
    }

    .solution-service-reverse .solution-service-intro,
    .solution-service-reverse .solution-service-panel {
        order: initial;
    }

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

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

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

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

    .ai-content,
    .contact-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-right {
        gap: 28px;
    }
}

@media (max-width: 768px) {
    body.menu-active {
        overflow: hidden;
    }

    .nav-toggle {
        display: block;
        flex-shrink: 0;
    }

    .nav-links {
        position: absolute;
        top: 72px;
        left: 12px;
        right: 12px;
        display: flex;
        max-width: none;
        max-height: 0;
        margin: 0;
        padding: 0 20px;
        overflow: hidden;
        flex-direction: column;
        gap: 0;
        border: 1px solid transparent;
        border-radius: 0 0 20px 20px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.2s ease, transform 0.3s ease;
    }

    nav.menu-open .nav-links {
        max-height: calc(100vh - 90px);
        padding: 12px 20px 18px;
        overflow-y: auto;
        border-color: rgba(15, 23, 42, 0.08);
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(15, 23, 42, 0.07);
    }

    .nav-links li:last-child {
        border-bottom: 0;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 15px 4px;
        font-size: 16px;
    }

    .nav-links a::after {
        display: none;
    }
    
    .nav-content {
        position: relative;
        padding: 0 20px;
    }

    section {
        padding: 80px 0;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .solutions-grid,
    .insight-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

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

    .insight-grid {
        max-width: 430px;
    }

    .insight-card {
        min-height: 340px;
    }

    .insight-card-icon {
        height: 220px;
    }

    .partner-panel {
        padding: 28px;
    }

    .partner-panel h3 {
        font-size: 28px;
    }

    .service-card {
        background: white;
        padding: 48px;
        border-radius: 28px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .map-container {
        height: 350px;
    }

    .contact-form-card {
        padding: 28px;
        border-radius: 22px;
    }

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

    .contact-submit {
        width: 100%;
    }

    .solutions-intro,
    .operational-services,
    .solution-service {
        padding: 80px 0;
    }

    .about-new {
        padding: 80px 0;
    }

    .about-introduction {
        margin-bottom: 50px;
    }

    .about-introduction-copy h2 {
        letter-spacing: -1.5px;
    }

    .about-story-card {
        padding: 28px;
        border-radius: 22px;
    }

    .about-story-card {
        min-height: 0;
    }

    .about-story-card > span {
        margin-bottom: 22px;
    }

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

    .about-pillars > div {
        border-right: 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .about-pillars > div:last-child {
        border-bottom: 0;
    }

    .solutions-intro-grid,
    .classification-layout,
    .solution-service-grid {
        gap: 38px;
    }

    .classification-section {
        padding: 80px 0;
    }

    .classification-content h2 {
        letter-spacing: -1.2px;
    }

    .solution-service-panel {
        padding: 28px;
        border-radius: 22px;
    }

    .solutions-intro-highlight {
        min-height: 320px;
        border-radius: 22px;
    }

    .solutions-intro-highlight img {
        min-height: 320px;
    }

    .operational-card {
        padding: 28px;
        border-radius: 22px;
    }

    .operational-card ul {
        grid-template-columns: 1fr;
    }

    .solution-feature-list {
        grid-template-columns: 1fr;
    }

    .solution-number {
        font-size: 56px;
    }

}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.ai-section,
.insight,
.contact,
.about-section,
.classification-section,
.sensor-section,
.solutions-intro,
.contact-page {
    background: #fafafa;
}

.solutions,
.service,
.about-values {
    background: #eceff3;
}

.ai-section::before,
.solutions::before,
.insight::before {
    background: none;
}

.technology-detail {
    background: #fafafa;
}

.technology-detail:nth-of-type(even) {
    background: #eceff3;
}

.solution-services .solution-service {
    background: #fafafa;
}

.solution-services .solution-service:nth-child(odd) {
    background: #eceff3;
}

@media (max-width: 768px) {
    .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .hero {
        min-height: 310px;
        height: auto;
    }

    .hero h1 {
        font-size: clamp(42px, 15vw, 64px);
        letter-spacing: -1.5px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .service-card,
    .contact-form-card,
    .solution-service-panel,
    .operational-card {
        padding: 24px;
        border-radius: 22px;
    }

    .home-service-card,
    .home-partner-card,
    .home-contact-card {
        padding: 26px;
        border-radius: 22px;
    }

    .home-service-card {
        min-height: 0;
    }

    .home-partner-list li {
        grid-template-columns: 34px 1fr;
    }

    .sensor-section-header {
        margin-top: -30px;
    }

    .sensor-section .sensor-grid {
        gap: 18px;
        padding-right: 0;
        padding-left: 0;
    }

    .technology-layout {
        gap: 32px;
    }

    .technology-features {
        grid-template-columns: 1fr;
    }

    .technology-features .technology-feature-wide {
        grid-column: auto;
    }

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

    .footer-brand p {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .nav-content {
        padding: 0 14px;
    }

    .logo-text {
        font-size: 20px;
    }

    .solutions-grid,
    .insight-grid {
        gap: 20px;
    }

    .solution-card-content,
    .about-story-card {
        padding: 22px;
    }

    .insight-card {
        min-height: 310px;
        padding: 14px 14px 24px;
    }

    .insight-card-icon {
        height: 190px;
    }
}
