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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== Top Bar ===== */
.top-bar {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.top-bar-item {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.top-bar-item:hover {
    color: #139ad8;
}

/* ===== Navbar ===== */
.navbar {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
}

.logo svg {
    display: block;
}

.logo-img {
    height: 75px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 10px;
}

.partner-img {
    max-height: 150px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    color: #333;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #139ad8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #139ad8;
    transition: width 0.3s;
}

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

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ===== Hero Slider ===== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide#slide-0 {
    background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1600&q=80') center/cover no-repeat;
}

.hero-slide#slide-1 {
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 700px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-cta-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #139ad8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: transform 0.3s, background 0.3s;
}

.hero-cta-icon:hover {
    transform: scale(1.1);
    background: #0d7bb5;
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.85);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.1rem;
    color: #333;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: #fff;
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 30px;
    height: 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #fff;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #139ad8;
    color: #fff;
}

.btn-primary:hover {
    background: #0d7bb5;
    transform: translateY(-2px);
}

.btn-pink {
    background: #f5a0a0;
    color: #333;
}

.btn-pink:hover {
    background: #e88e8e;
}

.btn-outline-full {
    display: block;
    padding: 14px;
    border: 2px solid #139ad8;
    color: #139ad8;
    border-radius: 30px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-full:hover {
    background: #139ad8;
    color: #fff;
}

/* ===== Section Header Bar ===== */
.section-header-bar {
    background: #139ad8;
    padding: 18px 0 22px;
    position: relative;
}

.section-header-bar h2 {
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #fff;
}

.header-arrow {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #139ad8;
    position: absolute;
    bottom: -12px;
    left: 40px;
}

/* ===== Partnerships ===== */
.partnerships {
    padding: 60px 0;
}

.partnerships-grid {
    display: flex;
    justify-content: center;
    gap: 120px;
    flex-wrap: wrap;
}

.partner-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.partner-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.partner-divider {
    width: 2px;
    height: 50px;
    background: #ccc;
}

.partner-level {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
}

.partner-type {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
}

.xray-green {
    color: #4caf50;
}

/* ===== Services ===== */
.services {
    padding: 0 0 60px;
}

.services-hero {
    position: relative;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.services-hero-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.services-hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 700px;
}

.section-subtitle {
    text-align: center;
    color: #139ad8;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

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

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

.service-img {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    margin-bottom: 15px;
    background-size: cover;
    background-position: center;
}

.consulting-img {
    background-image: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=600&q=80');
}

.engineering-img {
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=600&q=80');
    background-color: #1a2744;
}

.gaming-img {
    background-image: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?w=600&q=80');
}

.service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.read-more {
    color: #333;
    font-size: 0.9rem;
    text-decoration: underline;
    transition: color 0.3s;
}

.read-more:hover {
    color: #139ad8;
}

/* Tech Secrets */
.tech-secrets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
}

.tech-secrets-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.tech-secrets-text p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.tech-secrets-img {
    height: 300px;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=600&q=80') center/cover no-repeat;
    border-radius: 8px;
}

/* ===== Team ===== */
.team {
    padding: 60px 0;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-card {
    border: 2px solid #139ad8;
    border-radius: 12px;
    padding: 30px 50px;
    text-align: center;
    min-width: 260px;
}

.team-card h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

.team-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.team-avatar i {
    font-size: 4rem;
    color: #555;
}

.team-name {
    font-size: 1rem;
    color: #333;
    font-weight: 400;
}

.team-card-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

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

.team-card-link:hover .team-card {
    border-color: #0d7ab5;
    box-shadow: 0 4px 15px rgba(19, 154, 216, 0.2);
}

/* ===== Team Detail ===== */
.team-detail {
    padding: 60px 0;
}

.team-detail h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 20px;
}

.team-detail p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 800px;
}

/* ===== Mission / About ===== */
.mission {
    padding: 60px 0;
}

.mission-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.mission-block.reverse {
    direction: rtl;
}

.mission-block.reverse > * {
    direction: ltr;
}

.mission-img {
    height: 380px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.mission-img-1 {
    background-image: url('https://images.unsplash.com/photo-1531538606174-e1ed92d7ec9e?w=600&q=80');
}

.mission-img-2 {
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=600&q=80');
}

.mission-text h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #333;
}

.mission-text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.learn-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}

.learn-more:hover {
    color: #139ad8;
}

/* ===== Products ===== */
.products {
    padding-bottom: 60px;
}

.products-hero {
    position: relative;
    height: 350px;
    background: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.products-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.products-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.products-hero-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 400;
}

.product-item {
    margin-bottom: 50px;
    max-width: 800px;
}

.product-item h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.product-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.product-item .btn {
    margin-right: 20px;
    margin-bottom: 10px;
}

.product-item .learn-more {
    display: block;
    margin-top: 10px;
    text-align: right;
}

/* ===== Blog & Resources ===== */
.blog, .resources {
    padding: 60px 0;
}

.section-intro {
    text-align: center;
    font-size: 1rem;
    color: #666;
}

/* ===== Contact ===== */
.contact {
    padding: 60px 0;
    background: #f0f0f0;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #139ad8;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 15px;
}

.contact-form-wrapper > p {
    text-align: center;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 6px;
    font-weight: 600;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 0.85rem;
}

.input-icon input {
    width: 100%;
    padding: 12px 12px 12px 38px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.input-icon input:focus {
    outline: none;
    border-color: #139ad8;
}

.form-group.full-width {
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s;
}

textarea:focus {
    outline: none;
    border-color: #139ad8;
}

.checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.8rem;
    color: #555;
    font-weight: 400 !important;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #139ad8;
}

.checkbox-label a {
    color: #139ad8;
    text-decoration: underline;
}

.btn-submit {
    display: block;
    width: 250px;
    margin: 20px auto 0;
    padding: 14px;
    font-size: 1rem;
}

/* ===== Footer ===== */
.footer {
    background: #e8e8e8;
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand svg {
    display: block;
    margin-bottom: 10px;
}

.footer-brand h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.footer-brand hr {
    border: none;
    border-top: 2px solid #139ad8;
    width: 60%;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

.footer-col h5 {
    color: #139ad8;
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-col ul li {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li i {
    color: #139ad8;
    font-size: 0.75rem;
    width: 16px;
}

.footer-col ul li a {
    color: #555;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #139ad8;
}

.footer-col hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 20px 0;
}

.footer-bottom {
    background: #ddd;
    padding: 15px 0;
}

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

.footer-legal {
    font-size: 0.8rem;
    color: #666;
}

.footer-legal a {
    color: #666;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #139ad8;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #666;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-size: 1.1rem;
    color: #333;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* ===== Service Detail Pages ===== */
.service-detail {
    padding: 0 0 60px;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

.service-detail-img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.service-detail-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.more-services {
    border-top: 1px solid #ddd;
    padding-top: 40px;
}

.more-services h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 30px;
}

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

/* ===== Blog ===== */
.blog {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    max-width: 450px;
}

.blog-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
}

.blog-img {
    margin-bottom: 15px;
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
}

.blog-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-outline {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #333;
    border-radius: 25px;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #139ad8;
    border-color: #139ad8;
    color: #fff;
}

/* ===== Blog Post ===== */
.blog-post {
    padding: 0 0 60px;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.blog-post-meta .blog-date {
    margin-bottom: 15px;
}

.blog-post-meta p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.blog-post-body {
    max-width: 900px;
}

.blog-post-body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    color: #333;
    margin: 30px 0 15px;
}

.blog-post-body h3:first-child {
    margin-top: 0;
}

.blog-post-body p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.blog-signature {
    margin-top: 30px;
}

.blog-tagline {
    font-size: 0.9rem;
    color: #666;
}

/* ===== Legal Content (EULA / AUP) ===== */
.legal-content {
    padding: 40px 0 60px;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
}

.legal-document h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 20px;
}

.legal-document h3 {
    font-size: 1.05rem;
    color: #333;
    margin: 25px 0 10px;
}

.legal-document p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-document a {
    color: #139ad8;
    text-decoration: underline;
}

.legal-document ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 15px;
}

.legal-document ul li {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 5px;
}

/* ===== Contact Hero ===== */
.contact-hero {
    position: relative;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.contact-hero-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.contact-hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-secrets {
        grid-template-columns: 1fr;
    }

    .mission-block,
    .mission-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .partnerships-grid {
        gap: 60px;
    }

    .service-detail-layout,
    .blog-post-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 15px 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        padding: 10px 0;
    }

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

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

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

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

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

    .partnerships-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .services-hero-content h2,
    .products-hero-content h2 {
        font-size: 2rem;
    }

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

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

@media (max-width: 480px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }

    .hero {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }
}
