/* ============================================================
               RESET & BASE
               ============================================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --orange: #ff5e14;
            --orange-dark: #e04a0a;
            --orange-light: #ff8a5c;
            --blue: #1a2b4c;
            --cyan: #00c2d1;
            --purple: #7c6bf5;
            --yellow: #fbbf24;
            --bg: #fcfaf7;
            --white: #ffffff;
            --text: #111827;
            --text-secondary: #4b5563;
            --text-light: #9ca3af;
            --border: #f0ede8;
            --shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
            --shadow-hover: 0 30px 80px rgba(255, 94, 20, 0.12);
            --radius: 24px;
            --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
            --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section {
            padding: 100px 0;
            position: relative;
        }

        .section-label {
            display: inline-block;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--orange);
            background: rgba(255, 94, 20, 0.08);
            padding: 4px 18px;
            border-radius: 40px;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(2.6rem, 5vw, 4.2rem);
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -0.02em;
        }

        .section-title .highlight {
            color: var(--orange);
            position: relative;
        }

        .section-title .highlight::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 4px;
            width: 100%;
            height: 10px;
            background: rgba(255, 94, 20, 0.15);
            border-radius: 4px;
            z-index: -1;
        }

        .section-sub {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 520px;
            font-weight: 400;
            line-height: 1.8;
        }

        .text-center {
            text-align: center;
        }
        .text-center .section-sub {
            margin: 0 auto;
        }

        /* ============================================================
               BUTTONS
               ============================================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 12px 40px;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 60px;
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            font-family: var(--font);
            letter-spacing: 0.3px;
        }

        .btn-primary {
            background: var(--orange);
            color: #fff;
            box-shadow: 0 8px 30px rgba(255, 94, 20, 0.25);
        }

        .btn-primary:hover {
            background: var(--orange-dark);
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 16px 50px rgba(255, 94, 20, 0.35);
        }

        .btn-outline {
            background: transparent;
            color: var(--text);
            border: 2px solid var(--border);
        }

        .btn-outline:hover {
            border-color: var(--orange);
            color: var(--orange);
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .btn-white {
            background: #fff;
            color: var(--orange);
        }
        .btn-white:hover {
            background: var(--bg);
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .btn-dark {
            background: var(--blue);
            color: #fff;
        }
        .btn-dark:hover {
            background: #0f1a2e;
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(26, 43, 76, 0.25);
        }

        /* ============================================================
               HEADER
               ============================================================ */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 18px 0;
            background: rgba(252, 250, 247, 0.88);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            transition: all var(--transition);
        }

        header.scrolled {
            background: rgba(252, 250, 247, 0.96);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
            padding: 12px 0;
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 900;
            font-size: 1.8rem;
            letter-spacing: -0.02em;
            color: var(--text);
        }

        .logo .brand {
            color: var(--orange);
        }

        .logo .domain {
            font-size: 0.7rem;
            font-weight: 400;
            color: var(--text-light);
            opacity: 0.6;
            letter-spacing: 1px;
        }

        .logo .tagline {
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--orange);
            background: rgba(255, 94, 20, 0.1);
            padding: 2px 14px;
            border-radius: 40px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 36px;
            list-style: none;
        }

        .nav-links li a {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-secondary);
            transition: color var(--transition);
            position: relative;
            padding: 4px 0;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 3px;
            background: var(--orange);
            border-radius: 4px;
            transition: width var(--transition);
        }

        .nav-links li a:hover,
        .nav-links li a.active {
            color: var(--text);
        }

        .nav-links li a:hover::after,
        .nav-links li a.active::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--orange) !important;
            color: #fff !important;
            padding: 8px 28px !important;
            border-radius: 60px !important;
            font-weight: 700 !important;
            font-size: 0.8rem !important;
            box-shadow: 0 4px 16px rgba(255, 94, 20, 0.2);
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: var(--orange-dark) !important;
            transform: translateY(-2px) !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--text);
            border-radius: 4px;
            transition: all var(--transition);
        }

        .hamburger.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ============================================================
               HERO — 超大排版 · 宽幅布局
               ============================================================ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            background: var(--bg);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 60%;
            height: 140%;
            background: radial-gradient(ellipse, rgba(255, 94, 20, 0.06), transparent 70%);
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
            padding: 30px 0;
        }

        .hero-text .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--orange);
            background: rgba(255, 94, 20, 0.08);
            padding: 6px 20px;
            border-radius: 40px;
            margin-bottom: 24px;
        }

        .hero-text h1 {
            font-size: clamp(3rem, 7vw, 5.2rem);
            font-weight: 900;
            line-height: 1.02;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }

        .hero-text h1 .highlight {
            color: var(--orange);
            position: relative;
        }

        .hero-text h1 .highlight::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 6px;
            width: 100%;
            height: 14px;
            background: rgba(255, 94, 20, 0.12);
            border-radius: 4px;
            z-index: -1;
        }

        .hero-text p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 480px;
            line-height: 1.9;
            margin-bottom: 36px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .hero-visual {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .hero-visual .block {
            background: #fff;
            border-radius: var(--radius);
            padding: 32px 20px;
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: all var(--transition);
        }

        .hero-visual .block:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-hover);
            border-color: var(--orange);
        }

        .hero-visual .block:nth-child(2) {
            /*margin-top: 24px;*/
        }
        .hero-visual .block:nth-child(3) {
            /*margin-top: 12px;*/
        }
        .hero-visual .block:nth-child(4) {
            /*margin-top: 12px;*/
        }

        .hero-visual .block .icon-wrap {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 1.8rem;
            color: #fff;
        }

        .hero-visual .block:nth-child(1) .icon-wrap {
            background: var(--orange);
        }
        .hero-visual .block:nth-child(2) .icon-wrap {
            background: var(--cyan);
        }
        .hero-visual .block:nth-child(3) .icon-wrap {
            background: var(--purple);
        }
        .hero-visual .block:nth-child(4) .icon-wrap {
            background: var(--yellow);
            color: var(--text);
        }

        .hero-visual .block span {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-secondary);
        }

        /* ============================================================
               ABOUT — 宽幅留白
               ============================================================ */
        .about {
            background: #fff;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        .about-text p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 2;
            margin-bottom: 18px;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 32px;
        }

        .about-stats .stat {
            background: var(--bg);
            border-radius: var(--radius);
            padding: 24px 12px;
            text-align: center;
            border: 1px solid var(--border);
        }

        .about-stats .stat .number {
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--orange);
            display: block;
        }

        .about-stats .stat .label {
            font-size: 0.8rem;
            color: var(--text-light);
            font-weight: 400;
        }

        .about-right {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .about-right .card {
            background: var(--bg);
            border-radius: var(--radius);
            padding: 28px 32px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            border: 1px solid var(--border);
            transition: all var(--transition);
        }

        .about-right .card:hover {
            border-color: var(--orange);
            box-shadow: var(--shadow-hover);
            transform: translateX(8px);
        }

        .about-right .card .num {
            font-size: 2rem;
            font-weight: 900;
            color: var(--orange);
            opacity: 0.2;
            flex-shrink: 0;
            line-height: 1;
            min-width: 44px;
        }

        .about-right .card h4 {
            font-weight: 700;
            font-size: 1.15rem;
            margin-bottom: 4px;
        }

        .about-right .card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 400;
        }

        /* ============================================================
               SERVICES — 大卡片 · 多色彩
               ============================================================ */
        .services {
            background: var(--bg);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 50px;
        }

        .service-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 40px 30px;
            border: 1px solid var(--border);
            transition: all var(--transition);
            box-shadow: var(--shadow);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--orange);
            box-shadow: var(--shadow-hover);
        }

        .service-card .icon {
            width: 60px;
            height: 60px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #fff;
            margin-bottom: 20px;
        }

        .service-card:nth-child(1) .icon {
            background: var(--orange);
        }
        .service-card:nth-child(2) .icon {
            background: var(--cyan);
        }
        .service-card:nth-child(3) .icon {
            background: var(--purple);
        }
        .service-card:nth-child(4) .icon {
            background: var(--yellow);
            color: var(--text);
        }
        .service-card:nth-child(5) .icon {
            background: #f472b6;
        }
        .service-card:nth-child(6) .icon {
            background: #34d399;
        }

        .service-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .service-card p {
            font-size: 0.92rem;
            color: var(--text-secondary);
            font-weight: 400;
            line-height: 1.7;
        }

        /* ============================================================
               PORTFOLIO — 错落网格
               ============================================================ */
        .portfolio {
            background: #fff;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 50px;
        }

        .portfolio-item {
            background: var(--bg);
            border-radius: var(--radius);
            padding: 36px 24px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all var(--transition);
            aspect-ratio: 4/3;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .portfolio-item:nth-child(1) {
            background: linear-gradient(145deg, #fff8f5, #fff);
        }
        .portfolio-item:nth-child(2) {
            background: linear-gradient(145deg, #f5f8ff, #fff);
        }
        .portfolio-item:nth-child(3) {
            background: linear-gradient(145deg, #f5fff8, #fff);
        }
        .portfolio-item:nth-child(4) {
            background: linear-gradient(145deg, #fff5f8, #fff);
        }
        .portfolio-item:nth-child(5) {
            background: linear-gradient(145deg, #f8f5ff, #fff);
        }
        .portfolio-item:nth-child(6) {
            background: linear-gradient(145deg, #f5faf8, #fff);
        }

        .portfolio-item:hover {
            transform: scale(1.03);
            border-color: var(--orange);
            box-shadow: var(--shadow-hover);
        }

        .portfolio-item .emoji {
            font-size: 3rem;
            margin-bottom: 14px;
        }
        .portfolio-item .fa-icon {
            font-size: 2.8rem;
            margin-bottom: 12px;
            display: inline-block;
        }

        .portfolio-item h4 {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 4px;
        }

        .portfolio-item p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            font-weight: 400;
        }

        .portfolio-item .tag {
            display: inline-block;
            margin-top: 14px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--orange);
            background: rgba(255, 94, 20, 0.08);
            padding: 3px 16px;
            border-radius: 40px;
        }

        /* ============================================================
               TEAM
               ============================================================ */
        .team {
            background: var(--bg);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            margin-top: 50px;
        }

        .team-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 32px 20px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all var(--transition);
            box-shadow: var(--shadow);
        }

        .team-card:hover {
            transform: translateY(-8px);
            border-color: var(--orange);
            box-shadow: var(--shadow-hover);
        }

        .team-card .avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 94, 20, 0.1), var(--bg));
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.4rem;
            color: var(--orange);
            border: 2px solid var(--border);
        }

        .team-card h4 {
            font-weight: 700;
            font-size: 1.05rem;
        }

        .team-card .role {
            font-size: 0.8rem;
            color: var(--orange);
            font-weight: 600;
        }

        .team-card p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            font-weight: 400;
            margin-top: 6px;
        }

        /* ============================================================
               NEWS
               ============================================================ */
        .news {
            background: #fff;
        }

        .news-list {
            margin-top: 50px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .news-item {
            display: grid;
            grid-template-columns: 110px 1fr;
            gap: 28px;
            padding: 24px 32px;
            background: var(--bg);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: all var(--transition);
            align-items: center;
        }

        .news-item:hover {
            border-color: var(--orange);
            transform: translateX(8px);
            box-shadow: var(--shadow-hover);
        }

        .news-item .date {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--orange);
            letter-spacing: 1px;
        }

        .news-item .content h4 {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 2px;
        }

        .news-item .content p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            font-weight: 400;
        }

        /* ============================================================
               CONTACT
               ============================================================ */
        .contact {
            background: var(--bg);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 50px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .contact-info .item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 28px;
            background: #fff;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: all var(--transition);
        }

        .contact-info .item:hover {
            border-color: var(--orange);
            box-shadow: var(--shadow-hover);
            transform: translateX(6px);
        }

        .contact-info .item i {
            font-size: 1.6rem;
            color: var(--orange);
            width: 40px;
            text-align: center;
            flex-shrink: 0;
        }

        .contact-info .item h4 {
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 2px;
        }

        .contact-info .item p {
            color: var(--text-secondary);
            font-weight: 400;
            font-size: 0.9rem;
        }

        .contact-info .item a {
            color: var(--orange);
        }
        .contact-info .item a:hover {
            color: var(--orange-dark);
        }

        .contact-map {
            background: #fff;
            border-radius: var(--radius);
            padding: 48px 32px;
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 300px;
        }

        .contact-map .big-icon {
            font-size: 3.6rem;
            color: var(--orange);
            opacity: 0.2;
            margin-bottom: 16px;
        }

        .contact-map h4 {
            font-size: 1.2rem;
            font-weight: 700;
        }

        .contact-map p {
            color: var(--text-secondary);
            font-weight: 400;
            line-height: 1.8;
        }

        .contact-map .highlight-text {
            color: var(--orange);
            font-weight: 700;
        }

        /* ============================================================
               FOOTER
               ============================================================ */
        footer {
            background: #fff;
            border-top: 1px solid var(--border);
            padding: 44px 0 28px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 32px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 24px;
        }

        .footer-brand .logo {
            font-size: 1.6rem;
            margin-bottom: 6px;
        }

        .footer-brand .full-name {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--orange);
            margin-bottom: 12px;
        }

        .footer-brand p {
            color: var(--text-secondary);
            font-size: 0.85rem;
            font-weight: 400;
            max-width: 280px;
            line-height: 1.7;
        }

        .footer-col h4 {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
            color: var(--text);
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col ul li a {
            color: var(--text-secondary);
            font-size: 0.85rem;
            font-weight: 400;
            transition: color var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--orange);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.8rem;
            color: var(--text-light);
            font-weight: 400;
        }

        .footer-bottom a {
            color: var(--text-light);
            transition: color var(--transition);
        }

        .footer-bottom a:hover {
            color: var(--orange);
        }

        /* ============================================================
               RESPONSIVE
               ============================================================ */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }
            .hero-text p {
                margin: 0 auto 32px;
            }
            .hero-actions {
                justify-content: center;
            }
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero-visual {
                max-width: 420px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 24px;
            }
            .section {
                padding: 64px 0;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: #fff;
                flex-direction: column;
                padding: 80px 32px 40px;
                gap: 24px;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                border-left: 1px solid var(--border);
                align-items: flex-start;
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.04);
            }

            .nav-links.open {
                right: 0;
            }

            .hamburger {
                display: flex;
                z-index: 1001;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            .team-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .news-item {
                grid-template-columns: 1fr;
                gap: 6px;
                padding: 18px 20px;
            }

            .about-stats {
                grid-template-columns: 1fr 1fr 1fr;
            }
            .about-stats .stat {
                padding: 14px 6px;
            }
            .about-stats .stat .number {
                font-size: 1.8rem;
            }

            .hero-text h1 {
                font-size: 2.6rem;
            }
            .hero-visual {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .hero-visual .block {
                padding: 20px 12px;
            }
            .hero-visual .block .icon-wrap {
                width: 48px;
                height: 48px;
                font-size: 1.4rem;
            }
            .hero-visual .block:nth-child(2),
            .hero-visual .block:nth-child(3),
            .hero-visual .block:nth-child(4) {
                margin-top: 0;
            }
        }

        @media (max-width: 480px) {
            .team-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .team-card {
                padding: 18px 12px;
            }
            .team-card .avatar {
                width: 60px;
                height: 60px;
                font-size: 1.6rem;
            }
            .btn {
                padding: 12px 24px;
                font-size: 0.8rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .contact-info .item {
                padding: 14px 16px;
                flex-wrap: wrap;
            }
            .contact-map {
                padding: 24px 16px;
                min-height: 200px;
            }
            .hero-text h1 {
                font-size: 2.2rem;
            }
        }