html {
    scroll-behavior: auto;
}

:root {
    --primary-color: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-900: #111827;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: var(--text-color);
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(1.85rem, 5vw, 3.5rem);
    margin-bottom: 1.25rem;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.15rem, 3vw, 1.5rem);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn.primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn.primary:hover {
    background-color: var(--gray-50);
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn.secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn.full-width {
    width: 100%;
}

/* ── Sticky Navigation ── */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color), var(--primary-light));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Logo image — responsive */
.nav-logo {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Desktop nav links — hidden on mobile */
.nav-links {
    display: none;
}

/* ── Hamburger button ── */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.22);
}

.hamburger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
    transform-origin: center;
}

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

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* ── Mobile nav drawer — full width ── */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.15s, padding-left 0.15s;
    display: block;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: rgba(255, 255, 255, 0.08);
    padding-left: 2rem;
    color: #fff;
}

/* ── Hero Section ── */
.hero {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color), var(--primary-light));
    color: var(--white);
}

.hero-content {
    padding: 4.5rem 0 4rem;
    max-width: 800px;
}

.hero-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 640px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.bg-white {
    background-color: var(--white);
}

.bg-gray {
    background-color: var(--gray-50);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Expertise Section */
.expertise-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.expertise-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.industry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-section {
    background-color: #eef2ff;
}

.contact-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.12);
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-panel {
    background: linear-gradient(160deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.decor-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.decor-circle.circle-1 {
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.08);
    bottom: -70px;
    right: -70px;
}

.decor-circle.circle-2 {
    width: 130px;
    height: 130px;
    background: rgba(255, 255, 255, 0.05);
    bottom: 80px;
    right: 50px;
}

.decor-circle.circle-3 {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.07);
    top: -20px;
    right: 30px;
}

.info-panel-content {
    position: relative;
    z-index: 1;
}

.contact-info-panel h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.info-panel-content>p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-detail .icon {
    color: #bfdbfe;
    flex-shrink: 0;
}

.response-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
}

.response-badge .icon {
    width: 16px;
    height: 16px;
    color: #fbbf24;
}

.contact-form-panel {
    padding: 3rem 2.5rem;
}

/* Form header */
.form-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid #f3f4f6;
}

.form-header h3 {
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Input with icon */
.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-light);
    pointer-events: none;
    transition: color 0.2s ease;
}

.input-wrapper:focus-within .input-icon {
    color: var(--primary-color);
}

.input-wrapper input,
.input-wrapper select {
    padding-left: 2.75rem;
}

/* Form Elements */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.required {
    color: #ef4444;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    background: var(--white);
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.btn.dark {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1rem;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn.dark:hover {
    background-color: var(--primary-dark);
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.btn.dark:hover .btn-icon {
    transform: translateX(4px);
}

.form-alert {
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.form-alert.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-alert.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.toast-container {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.toast {
    min-width: 280px;
    max-width: 360px;
    padding: 0.95rem 1rem;
    border-radius: 0.85rem;
    color: var(--white);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    transform: translateY(-10px);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-success {
    background: #065f46;
}

.toast-error {
    background: #b91c1c;
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
    color: #9ca3af;
}

.contact-info p {
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.footer-contact-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}

.footer-contact-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--white);
}

.footer-primary-icons {
    margin-top: 1.25rem;
}

.footer-contact-email {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #374151;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons .icon {
    cursor: pointer;
    transition: color 0.3s ease;
}

.social-icons .icon:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Icons */
.icon {
    width: 24px;
    height: 24px;
}

.icon.blue {
    color: var(--primary-color);
}

/* Responsive Design */
@media (min-width: 768px) {

    /* Show desktop nav, hide mobile controls */
    .nav-links {
        display: flex;
        gap: 2rem;
    }

    .hamburger {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }

    .nav-logo {
        height: 56px;
        max-width: 240px;
    }

    .nav-content {
        padding: 1rem 0;
    }

    .nav-links a {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: rgba(255, 255, 255, 0.8);
    }

    .hero-content {
        padding: 6rem 0 5rem;
    }

    .hero-text p {
        font-size: 1.25rem;
    }

    .cta-buttons {
        flex-direction: row;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .expertise-content {
        flex-direction: row;
    }

    .expertise-image {
        flex: 1;
    }

    .expertise-text {
        flex: 1;
    }

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

    .about-content {
        flex-direction: row;
    }

    .about-image {
        flex: 1;
    }

    .about-text {
        flex: 1;
    }

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

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

    .contact-card {
        flex-direction: row;
    }

    .contact-info-panel {
        width: 40%;
        flex-shrink: 0;
    }

    .contact-form-panel {
        flex: 1;
    }

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

/* ── Strategic Partner Section ─────────────────────────────── */
.partner-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.partner-visual {
    flex-shrink: 0;
    width: min(100%, 400px);
}

.partner-anim-svg {
    width: 100%;
    height: auto;
}

.partner-info {
    flex: 1;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: var(--primary-color);
    padding: 0.28rem 0.85rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 1rem;
}

.partner-badge .icon {
    width: 13px;
    height: 13px;
}

.partner-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.partner-desc {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.96rem;
    margin-bottom: 1.25rem;
    max-width: 560px;
}

.partner-points {
    list-style: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.partner-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--text-color);
    line-height: 1.65;
}

.partner-points .icon {
    width: 16px;
    height: 16px;
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.partner-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.7rem 1.35rem;
    border-radius: 0.6rem;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.22);
}

.partner-cta .btn-icon {
    width: 15px;
    height: 15px;
}

.pa-shell {
    stroke: rgba(148, 163, 184, 0.24);
    stroke-width: 1;
}

.pa-flow-in {
    stroke-dasharray: 5 4;
    animation: paFlowIn 2s linear infinite;
}

.pa-flow-out {
    stroke-dasharray: 5 4;
    animation: paFlowOut 2s linear infinite;
}

.pa-flow-in.pa-d1 {
    animation-delay: -1s;
}

.pa-flow-out.pa-d2 {
    animation-delay: -1s;
}

@keyframes paFlowIn {
    from {
        stroke-dashoffset: 120;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes paFlowOut {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: 120;
    }
}

.pa-ring {
    transform-box: fill-box;
    transform-origin: center;
}

.pa-ring.pa-nd1 {
    animation: paRing 2.4s ease-in-out 0s infinite;
}

.pa-ring.pa-nd2 {
    animation: paRing 2.4s ease-in-out 0.6s infinite;
}

.pa-ring.pa-nd3 {
    animation: paRing 2.4s ease-in-out 1.2s infinite;
}

.pa-ring.pa-nd4 {
    animation: paRing 2.4s ease-in-out 1.8s infinite;
}

@keyframes paRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.55;
    }

    50% {
        transform: scale(1.45);
        opacity: 0.2;
    }
}

.pa-dot {
    transform-box: fill-box;
    transform-origin: center;
}

.pa-dot.pa-nd1 {
    animation: paDot 2.4s ease-in-out 0s infinite;
}

.pa-dot.pa-nd2 {
    animation: paDot 2.4s ease-in-out 0.6s infinite;
}

.pa-dot.pa-nd3 {
    animation: paDot 2.4s ease-in-out 1.2s infinite;
}

.pa-dot.pa-nd4 {
    animation: paDot 2.4s ease-in-out 1.8s infinite;
}

@keyframes paDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.18);
        opacity: 0.78;
    }
}

.pa-border-run {
    animation: paBorderRun 3s linear infinite;
}

@keyframes paBorderRun {
    from {
        stroke-dashoffset: 450;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.pa-breathe {
    animation: paBreathe 3s ease-in-out infinite;
}

@keyframes paBreathe {

    0%,
    100% {
        opacity: 0.32;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(1.02);
    }
}

.pa-float {
    transform-box: fill-box;
    transform-origin: center;
}

.pa-fa {
    animation: paFloat 3s ease-in-out 0s infinite;
}

.pa-fb {
    animation: paFloat 3s ease-in-out 1.2s infinite;
}

@keyframes paFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

/* Partner section responsive */
@media (max-width: 900px) {
    .partner-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .partner-visual {
        width: min(100%, 340px);
    }

    .partner-info {
        width: 100%;
    }
}

:root {
    --primary-color: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-900: #111827;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: var(--text-color);
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(1.85rem, 5vw, 3.5rem);
    margin-bottom: 1.25rem;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.15rem, 3vw, 1.5rem);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn.primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn.primary:hover {
    background-color: var(--gray-50);
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn.secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn.full-width {
    width: 100%;
}

/* ── Sticky Navigation ── */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color), var(--primary-light));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Logo image — responsive */
.nav-logo {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Desktop nav links — hidden on mobile */
.nav-links {
    display: none;
}

/* ── Hamburger button ── */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.22);
}

.hamburger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
    transform-origin: center;
}

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

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* ── Mobile nav drawer — full width ── */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.15s, padding-left 0.15s;
    display: block;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: rgba(255, 255, 255, 0.08);
    padding-left: 2rem;
    color: #fff;
}

/* ── Hero Section ── */
.hero {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color), var(--primary-light));
    color: var(--white);
}

.hero-content {
    padding: 4.5rem 0 4rem;
    max-width: 800px;
}

.hero-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 640px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.bg-white {
    background-color: var(--white);
}

.bg-gray {
    background-color: var(--gray-50);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Expertise Section */
.expertise-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.expertise-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.industry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-section {
    background-color: #eef2ff;
}

.contact-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.12);
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-panel {
    background: linear-gradient(160deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.decor-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.decor-circle.circle-1 {
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.08);
    bottom: -70px;
    right: -70px;
}

.decor-circle.circle-2 {
    width: 130px;
    height: 130px;
    background: rgba(255, 255, 255, 0.05);
    bottom: 80px;
    right: 50px;
}

.decor-circle.circle-3 {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.07);
    top: -20px;
    right: 30px;
}

.info-panel-content {
    position: relative;
    z-index: 1;
}

.contact-info-panel h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.info-panel-content>p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-detail .icon {
    color: #bfdbfe;
    flex-shrink: 0;
}

.response-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
}

.response-badge .icon {
    width: 16px;
    height: 16px;
    color: #fbbf24;
}

.contact-form-panel {
    padding: 3rem 2.5rem;
}

/* Form header */
.form-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid #f3f4f6;
}

.form-header h3 {
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Input with icon */
.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-light);
    pointer-events: none;
    transition: color 0.2s ease;
}

.input-wrapper:focus-within .input-icon {
    color: var(--primary-color);
}

.input-wrapper input,
.input-wrapper select {
    padding-left: 2.75rem;
}

/* Form Elements */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.required {
    color: #ef4444;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    background: var(--white);
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.btn.dark {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1rem;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn.dark:hover {
    background-color: var(--primary-dark);
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.btn.dark:hover .btn-icon {
    transform: translateX(4px);
}

.form-alert {
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.form-alert.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-alert.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
    color: #9ca3af;
}

.contact-info p {
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.footer-contact-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}

.footer-contact-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--white);
}

.footer-contact-email {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #374151;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons .icon {
    cursor: pointer;
    transition: color 0.3s ease;
}

.social-icons .icon:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Icons */
.icon {
    width: 24px;
    height: 24px;
}

.icon.blue {
    color: var(--primary-color);
}

/* Responsive Design */
@media (min-width: 768px) {

    /* Show desktop nav, hide mobile controls */
    .nav-links {
        display: flex;
        gap: 2rem;
    }

    .hamburger {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }

    .nav-logo {
        height: 56px;
        max-width: 240px;
    }

    .nav-content {
        padding: 1rem 0;
    }

    .nav-links a {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: rgba(255, 255, 255, 0.8);
    }

    .hero-content {
        padding: 6rem 0 5rem;
    }

    .hero-text p {
        font-size: 1.25rem;
    }

    .cta-buttons {
        flex-direction: row;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .expertise-content {
        flex-direction: row;
    }

    .expertise-image {
        flex: 1;
    }

    .expertise-text {
        flex: 1;
    }

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

    .about-content {
        flex-direction: row;
    }

    .about-image {
        flex: 1;
    }

    .about-text {
        flex: 1;
    }

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

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

    .contact-card {
        flex-direction: row;
    }

    .contact-info-panel {
        width: 40%;
        flex-shrink: 0;
    }

    .contact-form-panel {
        flex: 1;
    }

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

/* ── Strategic Partner Section ─────────────────────────────── */
.partner-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.partner-visual {
    flex-shrink: 0;
    width: min(100%, 400px);
}

.partner-anim-svg {
    width: 100%;
    height: auto;
}

.partner-info {
    flex: 1;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: var(--primary-color);
    padding: 0.28rem 0.85rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 1rem;
}

.partner-badge .icon {
    width: 13px;
    height: 13px;
}

.partner-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.partner-desc {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.96rem;
    margin-bottom: 1.25rem;
    max-width: 560px;
}

.partner-points {
    list-style: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.partner-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--text-color);
    line-height: 1.65;
}

.partner-points .icon {
    width: 16px;
    height: 16px;
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.partner-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.7rem 1.35rem;
    border-radius: 0.6rem;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.22);
}

.partner-cta .btn-icon {
    width: 15px;
    height: 15px;
}

.pa-shell {
    stroke: rgba(148, 163, 184, 0.24);
    stroke-width: 1;
}

.pa-flow-in {
    stroke-dasharray: 5 4;
    animation: paFlowIn 2s linear infinite;
}

.pa-flow-out {
    stroke-dasharray: 5 4;
    animation: paFlowOut 2s linear infinite;
}

.pa-flow-in.pa-d1 {
    animation-delay: -1s;
}

.pa-flow-out.pa-d2 {
    animation-delay: -1s;
}

@keyframes paFlowIn {
    from {
        stroke-dashoffset: 120;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes paFlowOut {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: 120;
    }
}

.pa-ring {
    transform-box: fill-box;
    transform-origin: center;
}

.pa-ring.pa-nd1 {
    animation: paRing 2.4s ease-in-out 0s infinite;
}

.pa-ring.pa-nd2 {
    animation: paRing 2.4s ease-in-out 0.6s infinite;
}

.pa-ring.pa-nd3 {
    animation: paRing 2.4s ease-in-out 1.2s infinite;
}

.pa-ring.pa-nd4 {
    animation: paRing 2.4s ease-in-out 1.8s infinite;
}

@keyframes paRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.55;
    }

    50% {
        transform: scale(1.45);
        opacity: 0.2;
    }
}

.pa-dot {
    transform-box: fill-box;
    transform-origin: center;
}

.pa-dot.pa-nd1 {
    animation: paDot 2.4s ease-in-out 0s infinite;
}

.pa-dot.pa-nd2 {
    animation: paDot 2.4s ease-in-out 0.6s infinite;
}

.pa-dot.pa-nd3 {
    animation: paDot 2.4s ease-in-out 1.2s infinite;
}

.pa-dot.pa-nd4 {
    animation: paDot 2.4s ease-in-out 1.8s infinite;
}

@keyframes paDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.18);
        opacity: 0.78;
    }
}

.pa-border-run {
    animation: paBorderRun 3s linear infinite;
}

@keyframes paBorderRun {
    from {
        stroke-dashoffset: 450;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.pa-breathe {
    animation: paBreathe 3s ease-in-out infinite;
}

@keyframes paBreathe {

    0%,
    100% {
        opacity: 0.32;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(1.02);
    }
}

.pa-float {
    transform-box: fill-box;
    transform-origin: center;
}

.pa-fa {
    animation: paFloat 3s ease-in-out 0s infinite;
}

.pa-fb {
    animation: paFloat 3s ease-in-out 1.2s infinite;
}

@keyframes paFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

/* Partner section responsive */
@media (max-width: 900px) {
    .partner-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .partner-visual {
        width: min(100%, 340px);
    }

    .partner-info {
        width: 100%;
    }
}

/* Strategic Partner Section */
/* Base Styles */

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 2.6rem 0 2.3rem;
    }

    .hero h1 {
        font-size: clamp(1.95rem, 8vw, 2.6rem);
        line-height: 1.15;
        margin-bottom: 1rem;
        text-align: center;
    }

    .hero-text p {
        font-size: 0.98rem;
        margin-bottom: 1.35rem;
        text-align: center;
    }

    .cta-buttons {
        align-items: center;
    }

    .cta-buttons .btn {
        width: auto;
        min-width: 220px;
        padding: 0.72rem 1.2rem;
        font-size: 0.95rem;
        border-radius: 0.7rem;
        text-decoration: none;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 0 0.9rem;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .cta-buttons .btn {
        min-width: 200px;
        padding: 0.66rem 1rem;
        font-size: 0.9rem;
    }
}

/* Final layout tuning */
.section {
    padding: 4rem 0;
}

.section-header {
    margin: 0 auto 3rem;
}

.stats-section {
    padding: 4rem 0;
}

.footer {
    padding: 3.25rem 0 1.75rem;
}

.footer-grid {
    gap: 2rem;
    text-align: center;
}

.footer-logo {
    justify-content: center;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-col ul {
    padding: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-contact-item {
    align-items: center;
}

.footer-contact-email {
    width: 100%;
    max-width: 280px;
}

.social-icons {
    justify-content: center;
}

.footer-bottom {
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-email {
    display: inline-block;
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom-email .icon {
    width: 16px;
    height: 16px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        align-items: start;
        text-align: left;
        gap: 2.5rem;
    }

    .footer-col {
        align-items: flex-start;
    }

    .footer-logo {
        justify-content: flex-start;
    }

    .contact-info {
        align-items: flex-start;
    }

    .footer-contact-item {
        align-items: flex-start;
    }

    .footer-contact-email {
        max-width: none;
    }

    .social-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 3.25rem 0;
    }

    .section-header {
        margin: 0 auto 2.25rem;
    }

    .stats-section {
        padding: 3.25rem 0;
    }

    .footer {
        padding: 2.75rem 0 1.5rem;
    }

    .footer-grid {
        gap: 1.75rem;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 0.55rem;
    }

    .footer-bottom-email {
        margin-top: 0;
    }
}

/* Final partner tuning */
.partner-section {
    background: #fff;
}

.partner-inner {
    display: flex;
    align-items: stretch;
    gap: 3rem;
}

.partner-visual {
    flex: 1;
    display: flex;
}

/* stretch the <a> wrapper to full column height */
.partner-visual>a {
    display: flex;
    width: 100%;
}

/* ── Partner logo card ── */
.partner-logo-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: #eff6ff;
    border: 1.5px solid #bfdbfe;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Chips row below logo — 3 per row */
.pc-chips-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    max-width: 260px;
}

.pc-chip {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: #fff;
    border: 1.5px solid #bfdbfe;
    color: #3b82f6;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
}

.pc-chip-icon {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    color: #3b82f6;
}

/* staggered wave */
.pc-chip-1 {
    animation: chipWave 2.4s ease-in-out infinite 0s;
}

.pc-chip-2 {
    animation: chipWave 2.4s ease-in-out infinite 0.3s;
}

.pc-chip-3 {
    animation: chipWave 2.4s ease-in-out infinite 0.6s;
}

.pc-chip-4 {
    animation: chipWave 2.4s ease-in-out infinite 0.9s;
}

.pc-chip-5 {
    animation: chipWave 2.4s ease-in-out infinite 1.2s;
}

.pc-chip-6 {
    animation: chipWave 2.4s ease-in-out infinite 1.5s;
}

@keyframes chipWave {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
    }

    50% {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.18);
    }
}

/* Content */
.pc-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
}

/* Logo */
.partner-logo-img {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Badge */
.partner-star-badge {
    background: #1e40af;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 999px;
    padding: 0.35rem 1rem;
    display: inline-block;
    text-transform: uppercase;
}

.partner-info {
    flex: 1;
}

.partner-info h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
}

.partner-heading {
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
    color: var(--primary-color);
    display: block;
}

.partner-desc {
    font-size: 0.95rem;
    margin-bottom: 1.4rem;
    max-width: none;
}

.partner-data-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1rem;
    margin-bottom: 1.25rem;
}

.partner-data-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: var(--text-color);
}

.partner-data-item .icon {
    flex-shrink: 0;
}

.partner-points {
    gap: 0.55rem;
    margin-bottom: 1.25rem;
}

.partner-points li {
    font-size: 0.9rem;
}

.partner-cta {
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    box-shadow: none;
}

.partner-cta:hover {
    box-shadow: none;
}

.pa-shell {
    fill: rgba(255, 255, 255, 0.9);
    stroke: rgba(148, 163, 184, 0.18);
}

@media (max-width: 900px) {
    .partner-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .partner-visual {
        width: 100%;
    }

    .partner-info {
        max-width: none;
    }

    .partner-data-grid {
        grid-template-columns: 1fr;
    }

    .partner-points {
        align-items: flex-start;
    }

    .partner-logo-card {
        padding: 2rem 1.5rem;
        width: 100%;
    }

    .partner-logo-img {
        max-width: 220px;
    }
}

/* ── Partner CTA row (Visit + View Projects buttons) ── */
.partner-cta-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.partner-cta-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.partner-cta-outline:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.22);
}

.partner-cta-attention {
    animation: partnerCtaPulse 0.7s ease 3;
}

.partner-cta-attention.partner-cta-outline {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 0 0 rgba(30, 64, 175, 0.3);
}

.partner-cta-attention .btn-icon {
    animation: partnerCtaIconNudge 0.7s ease 3;
}

@keyframes partnerCtaPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(30, 64, 175, 0.35);
    }

    35% {
        transform: scale(1.08);
        box-shadow: 0 0 0 12px rgba(30, 64, 175, 0.12);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 20px rgba(30, 64, 175, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(30, 64, 175, 0);
    }
}

@keyframes partnerCtaIconNudge {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }
}
