:root {
    --primary-color: #1565D8;
    --primary-dark: #0A2D6B;
    --accent-color: #00B8E6;
    --accent-soft: #E6F2FF;
    --text-dark: #162033;
    --text-muted: #667085;
    --bg-light: #F2F5F9;
    --bg-white: #ffffff;
    --border-soft: rgba(21, 101, 216, 0.14);
    --shadow-soft: 0 18px 45px rgba(10, 45, 107, 0.11);
    --shadow-card: 0 10px 30px rgba(10, 45, 107, 0.06);
    --radius-lg: 24px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Background particelle */
#tsparticles {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at top left, rgba(0, 184, 230, 0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(21, 101, 216, 0.13), transparent 32%),
        #ffffff;
}

/* Navbar */
.site-navbar {
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(21, 101, 216, 0.08);
    transition: padding 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-navbar.navbar-scrolled {
    padding: 9px 0;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 26px rgba(10, 45, 107, 0.09);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    color: var(--text-dark);
}

.navbar-logo {
    height: 52px;
    width: auto;
    display: block;
    transition: height 0.25s ease;
}

.site-navbar.navbar-scrolled .navbar-logo {
    height: 44px;
}

.nav-link {
    color: #334155;
    font-weight: 600;
}

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

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.btn {
    border-radius: 999px;
    font-weight: 800;
    padding: 0.74rem 1.22rem;
}

.btn-gradient {
    color: #fff;
    border: 0;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color), var(--accent-color));
    box-shadow: 0 16px 35px rgba(21, 101, 216, 0.22);
}

.btn-gradient:hover,
.btn-gradient:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(21, 101, 216, 0.3);
}

.btn-primary-soft {
    color: var(--primary-color);
    background: rgba(21, 101, 216, 0.08);
    border: 1px solid rgba(21, 101, 216, 0.12);
}

.btn-primary-soft:hover,
.btn-primary-soft:focus {
    color: #fff;
    background: var(--primary-color);
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1080;
    display: flex;
    justify-content: center;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner-content {
    width: min(100%, 860px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(21, 101, 216, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 45px rgba(10, 45, 107, 0.16);
    backdrop-filter: blur(16px);
}

.cookie-banner-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.cookie-banner-content a {
    color: var(--primary-color);
    font-weight: 800;
}

/* Hero */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 140px 0 90px;
}

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

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 16px;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.brand-title {
    font-weight: 900;
    font-size: clamp(4rem, 11vw, 8.5rem);
    line-height: 0.88;
    letter-spacing: 2px;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.brand-subtitle {
    font-weight: 500;
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--text-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.coming-soon-text {
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-top: 2rem;
    margin-bottom: 1.2rem;
}

.hero-description {
    max-width: 820px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.12rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.scroll-indicator {
    position: absolute;
    bottom: 34px;
    font-size: 2rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: color 0.3s;
}

.scroll-indicator:hover {
    color: var(--accent-color);
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.team-page-main {
    padding-top: 96px;
}

.legal-page-main {
    padding-top: 96px;
}

.about-section,
.method-section,
.stack-section {
    background-color: rgba(255, 255, 255, 0.92);
}

.services-section,
.usecases-section,
.contact-section {
    background: linear-gradient(180deg, rgba(242, 245, 249, 0.94), rgba(255, 255, 255, 0.94));
}

.icon-box,
.service-card,
.step-card,
.contact-card,
.tech-panel {
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-card);
}

.icon-box {
    padding: 34px;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.icon-box:hover,
.service-card:hover,
.step-card:hover,
.usecase-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(21, 101, 216, 0.24);
}

.icon-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card {
    height: 100%;
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 24px;
    color: #fff;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color), var(--accent-color));
}

.service-icon i {
    font-size: 1.45rem;
}

.service-card h4,
.step-card h4 {
    font-weight: 800;
    font-size: 1.16rem;
    margin-bottom: 12px;
}

.service-card p,
.step-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Team */
.team-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 245, 249, 0.94));
}

.team-lead-card,
.team-coordination-card,
.team-area-card {
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.team-lead-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 28px;
    align-items: center;
    padding: 40px;
    border-radius: var(--radius-lg);
}

.team-ceo-card {
    border: 1px solid rgba(21, 101, 216, 0.22);
    background:
        radial-gradient(circle at top right, rgba(0, 184, 230, 0.18), transparent 30%),
        radial-gradient(circle at bottom left, rgba(21, 101, 216, 0.08), transparent 28%),
        rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-soft);
}

.team-lead-card::after,
.team-coordination-card::after,
.team-area-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.team-lead-card::after {
    width: 190px;
    height: 190px;
    right: -95px;
    bottom: -95px;
    background: rgba(21, 101, 216, 0.08);
}

.team-coordination-card::after,
.team-area-card::after {
    width: 140px;
    height: 140px;
    right: -70px;
    top: -70px;
    background: rgba(0, 184, 230, 0.1);
}

.team-lead-photo {
    width: 118px;
    height: 118px;
    min-width: 118px;
    max-width: 118px;
    min-height: 118px;
    max-height: 118px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(21, 101, 216, 0.18);
    border: 4px solid rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.team-coordination-photo {
    width: 72px;
    height: 72px;
    min-width: 72px;
    max-width: 72px;
    min-height: 72px;
    max-height: 72px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(21, 101, 216, 0.16);
    border: 3px solid rgba(255, 255, 255, 0.95);
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    flex: 0 0 72px;
    position: relative;
    z-index: 1;
}

.team-member-photo {
    width: 62px;
    height: 62px;
    min-width: 62px;
    max-width: 62px;
    min-height: 62px;
    max-height: 62px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 10px 22px rgba(21, 101, 216, 0.12);
    flex: 0 0 62px;
}

.team-lead-photo img,
.team-coordination-photo img,
.team-member-photo img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    display: block;
}

.team-member-initials {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.team-area-icon {
    width: 58px;
    height: 58px;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color), var(--accent-color));
    box-shadow: 0 16px 34px rgba(21, 101, 216, 0.18);
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.team-area-icon i {
    font-size: 1.35rem;
}

.team-lead-content {
    position: relative;
    z-index: 1;
}

.team-lead-content h4 {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.team-lead-content h5,
.team-coordination-card h5 {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 14px;
}

.team-lead-content p,
.team-coordination-card p,
.team-area-description,
.team-member p {
    color: var(--text-muted);
    line-height: 1.7;
}

.team-lead-content p,
.team-coordination-card p {
    margin-bottom: 0;
}

.team-area-label {
    display: block;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.team-coordination-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.team-coordination-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    border-top: 4px solid rgba(21, 101, 216, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-area-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.team-area-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-coordination-card:hover,
.team-area-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(21, 101, 216, 0.24);
}

.team-area-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.team-area-header h4 {
    font-size: 1.18rem;
    font-weight: 900;
    margin-bottom: 0;
}

.team-area-description {
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.team-members {
    display: grid;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.team-member {
    padding: 18px;
    border-radius: 18px;
    background: rgba(21, 101, 216, 0.035);
    border: 1px solid rgba(21, 101, 216, 0.08);
}

.team-member-with-photo {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 14px;
    align-items: flex-start;
}

.team-member h5 {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.team-member span {
    display: block;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.86rem;
    line-height: 1.45;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 0.94rem;
    margin-bottom: 0;
}

/* IIoT */
.iiot-section {
    background:
        radial-gradient(circle at top left, rgba(0, 184, 230, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(242, 245, 249, 0.96), rgba(255, 255, 255, 0.96));
}

.iiot-panel {
    padding: 34px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.iiot-panel::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -110px;
    top: -110px;
    border-radius: 50%;
    background: rgba(0, 184, 230, 0.1);
    pointer-events: none;
}

.iiot-flow {
    display: grid;
    grid-template-columns: 1fr 44px 1fr 44px 1fr;
    gap: 14px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.iiot-node {
    padding: 24px;
    border-radius: 20px;
    background: rgba(21, 101, 216, 0.035);
    border: 1px solid rgba(21, 101, 216, 0.1);
}

.iiot-node-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color), var(--accent-color));
    box-shadow: 0 14px 28px rgba(21, 101, 216, 0.16);
    margin-bottom: 18px;
}

.iiot-node h4 {
    font-weight: 900;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.iiot-node p {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.94rem;
    margin-bottom: 0;
}

.iiot-connector {
    align-self: center;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 999px;
    position: relative;
}

.iiot-connector::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
    transform: translateY(-50%) rotate(45deg);
}

.iiot-highlight {
    margin-top: 24px;
    padding: 24px;
    border-radius: 20px;
    background:
        linear-gradient(45deg, rgba(10, 45, 107, 0.96), rgba(21, 101, 216, 0.92)),
        var(--primary-dark);
    color: #fff;
    position: relative;
    z-index: 1;
}

.iiot-highlight h4 {
    font-weight: 900;
    margin-bottom: 10px;
}

.iiot-highlight p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Method */
.timeline-row {
    position: relative;
}

.step-card {
    min-height: 245px;
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(0, 184, 230, 0.12);
}

.step-number {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 22px;
}

/* Use cases */
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.usecase-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    font-weight: 700;
}

.usecase-item i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 16px;
    color: var(--primary-color);
    background: rgba(21, 101, 216, 0.08);
}

/* Stack */
.tech-panel,
.contact-card {
    border-radius: var(--radius-lg);
    padding: 44px;
}

.stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.stack-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 10px 15px;
    background: rgba(21, 101, 216, 0.07);
    color: #24456f;
    font-weight: 700;
    border: 1px solid rgba(21, 101, 216, 0.08);
}

/* Contact */
.contact-card {
    background:
        radial-gradient(circle at top right, rgba(0, 184, 230, 0.16), transparent 28%),
        #ffffff;
}

.contact-info {
    display: grid;
    gap: 14px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #334155;
    font-weight: 600;
}

.contact-info-item i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary-color);
    background: rgba(21, 101, 216, 0.08);
}

.contact-form .form-label {
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    min-height: 50px;
    border-radius: 16px;
    border: 1px solid rgba(21, 101, 216, 0.14);
    background-color: rgba(255, 255, 255, 0.92);
    padding: 12px 16px;
    box-shadow: none;
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: rgba(21, 101, 216, 0.5);
    box-shadow: 0 0 0 0.22rem rgba(21, 101, 216, 0.1);
}

.privacy-check {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-message {
    display: none;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 600;
}

.form-message.is-visible {
    display: block;
}

.form-message.is-success {
    color: #0f5132;
    background: #d1e7dd;
    border: 1px solid #badbcc;
}

.form-message.is-error {
    color: #842029;
    background: #f8d7da;
    border: 1px solid #f5c2c7;
}

/* Footer */
.site-footer {
    padding: 28px 0;
    background: #ffffff;
    border-top: 1px solid rgba(21, 101, 216, 0.08);
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.footer-links a {
    color: var(--text-muted);
    font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--primary-color);
}

.legal-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(242, 245, 249, 0.95));
}

.legal-card {
    max-width: 920px;
    margin: 0 auto;
    padding: 42px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-card);
}

.legal-card h1 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 900;
    margin-bottom: 14px;
}

.legal-card h2 {
    font-size: 1.22rem;
    font-weight: 900;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-card p,
.legal-card li {
    color: var(--text-muted);
    line-height: 1.75;
}

.legal-card ul {
    padding-left: 1.2rem;
}

.legal-updated {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 28px;
}

/* Reveal on scroll */
.reveal {
    opacity: 1;
    transform: translateY(0);
}

.js-enabled .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-enabled .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-18px);
    }

    60% {
        transform: translateY(-9px);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .site-navbar {
        background: rgba(255, 255, 255, 0.96);
    }

    .navbar-collapse {
        padding-top: 16px;
    }

    .cookie-banner-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .section {
        padding: 78px 0;
    }

    .tech-panel,
    .contact-card {
        padding: 32px;
    }

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

    .team-coordination-grid,
    .team-area-grid {
        grid-template-columns: 1fr;
    }

    .iiot-flow {
        grid-template-columns: 1fr;
    }

    .iiot-connector {
        width: 2px;
        height: 34px;
        margin: 0 auto;
        background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    }

    .iiot-connector::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: -2px;
        transform: translateX(-50%) rotate(135deg);
    }
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 44px;
    }

    .site-navbar.navbar-scrolled .navbar-logo {
        height: 40px;
    }

    .brand-subtitle {
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .hero-actions .btn {
        width: 100%;
        max-width: 330px;
    }

    .team-lead-card {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .team-lead-photo {
        width: 104px;
        height: 104px;
        min-width: 104px;
        max-width: 104px;
        min-height: 104px;
        max-height: 104px;
        border-radius: 28px;
    }

    .team-coordination-photo {
        width: 72px;
        height: 72px;
        min-width: 72px;
        max-width: 72px;
        min-height: 72px;
        max-height: 72px;
        flex: 0 0 72px;
    }

    .team-coordination-card,
    .team-area-card {
        padding: 24px;
    }

    .team-area-header {
        align-items: flex-start;
    }

    .team-member-with-photo {
        grid-template-columns: 1fr;
    }

    .team-member-photo {
        width: 76px;
        height: 76px;
        min-width: 76px;
        max-width: 76px;
        min-height: 76px;
        max-height: 76px;
        flex: 0 0 76px;
    }

    .iiot-panel {
        padding: 24px;
    }

    .iiot-node,
    .iiot-highlight {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 125px;
    }

    .icon-box,
    .service-card,
    .step-card,
    .tech-panel,
    .contact-card,
    .legal-card {
        padding: 24px;
    }
}
