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

:root {
    /* ブランドカラー - より深みのあるブルー系 */
    --primary-color: #0052a3;
    --primary-light: #0066cc;
    --primary-dark: #003d7a;
    --secondary-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 82, 163, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 82, 163, 0.15);
    
    /* タイポグラフィ */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    --font-display: 'Playfair Display', serif;
    
    /* スペーシング - より広い余白 */
    --section-padding: 120px;
    --section-padding-mobile: 80px;
    --container-padding: 40px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===================================
   Utility Classes
   =================================== */
.pc-only {
    display: inline;
}

.sp-only {
    display: none;
}

/* ===================================
   Brand Typography
   =================================== */
.brand-angelo {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--primary-color);
}

.brand-angelo-italic {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 1.1em;
    color: var(--primary-color);
}

.brand-angelo-large {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: 2.2em;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-reading {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.1em;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

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

.nav__link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary-color);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0052a3 0%, #0099ff 100%);
    padding: 140px 0 100px;
    overflow: hidden;
}

/* 羽根の浮遊アニメーション */
.hero__feathers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero__feather {
    position: absolute;
    width: auto;
    height: 80px;
    filter: brightness(0) invert(1);
    opacity: 0.25;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.hero__feather--1 {
    height: 100px;
    top: 10%;
    left: 10%;
    animation: floatFeather 20s infinite;
    animation-delay: 0s;
}

.hero__feather--2 {
    height: 85px;
    top: 20%;
    right: 15%;
    animation: floatFeather 18s infinite;
    animation-delay: -3s;
}

.hero__feather--3 {
    height: 70px;
    top: 40%;
    left: 5%;
    animation: floatFeather 22s infinite;
    animation-delay: -6s;
}

.hero__feather--4 {
    height: 110px;
    top: 60%;
    right: 10%;
    animation: floatFeather 19s infinite;
    animation-delay: -9s;
}

.hero__feather--5 {
    height: 90px;
    top: 80%;
    left: 20%;
    animation: floatFeather 21s infinite;
    animation-delay: -12s;
}

.hero__feather--6 {
    height: 75px;
    top: 30%;
    right: 25%;
    animation: floatFeather 23s infinite;
    animation-delay: -15s;
}

.hero__feather--7 {
    height: 88px;
    top: 70%;
    left: 80%;
    animation: floatFeather 17s infinite;
    animation-delay: -18s;
}

.hero__feather--8 {
    height: 105px;
    top: 50%;
    left: 50%;
    animation: floatFeather 24s infinite;
    animation-delay: -21s;
}

@keyframes floatFeather {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    50% {
        transform: translateY(-80px) translateX(40px) rotate(180deg);
        opacity: 0.4;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-150px) translateX(-30px) rotate(360deg);
        opacity: 0;
    }
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 60px 20px;
}

.hero__logo {
    margin-bottom: 50px;
    animation: fadeInDown 1s ease both;
}

.hero__logo-img {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.hero__logo-img:hover {
    transform: scale(1.05);
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
    letter-spacing: 0.02em;
}

.hero__title br {
    display: none !important;
}

@media (min-width: 969px) {
    .hero__title br {
        display: none !important;
    }
}



.hero__subtitle {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
    letter-spacing: 0.05em;
    line-height: 1.8;
}

.hero__subtitle br {
    display: none !important;
}

@media (min-width: 969px) {
    .hero__subtitle br {
        display: none !important;
    }
}



.hero__brand {
    font-size: 1.1rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.6s both;
    opacity: 0.85;
}

.hero__brand-name {
    font-weight: 400;
    letter-spacing: 0.08em;
}

.hero__brand-name .brand-angelo {
    font-size: 1.3em;
    color: var(--white);
    margin: 0 6px;
}

.hero__brand-reading {
    font-size: 0.7em;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 0.15em;
}

.hero__tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.6s both;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.hero__tagline-icon {
    color: #ffd700;
    animation: pulse 2s ease infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===================================
   About angelo Section
   =================================== */
.about-angelo {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.about-angelo__content {
    max-width: 900px;
    margin: 0 auto;
}

.about-angelo__body {
    background: var(--white);
    padding: 80px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 82, 163, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-angelo__body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}



.about-angelo__text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-color);
}

.about-angelo__name {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.about-angelo__pronunciation {
    font-size: 1rem;
}

.about-angelo__meaning {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 82, 163, 0.1), rgba(0, 153, 255, 0.1));
    border-radius: 30px;
    letter-spacing: 0.1em;
}

.about-angelo__description {
    margin-top: 30px;
    line-height: 2.2;
}

.about-angelo__description strong {
    font-size: 1.15em;
    color: var(--primary-color);
    font-weight: 600;
}

.about-angelo__decoration {
    margin-top: 50px;
}

.about-angelo__wings {
    display: flex;
    justify-content: center;
    gap: 40px;
    opacity: 0.3;
}

.about-angelo__feather {
    height: 50px;
    width: auto;
    filter: grayscale(100%) brightness(0.5);
    opacity: 0.5;
}

/* ===================================
   Section Styling
   =================================== */
.section-header {
    margin-bottom: 80px;
}

.section-header--centered {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.section-title--english {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 0.15em;
    font-size: 2.2rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    margin: 30px auto;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 20px;
    line-height: 1.8;
}

/* ===================================
   Challenges Section
   =================================== */
.challenges {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.challenges__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.challenge-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.challenge-card__icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.challenge-card__text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-color);
}

/* ===================================
   BPO Section
   =================================== */
.bpo {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.bpo__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.bpo__text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-color);
    margin-bottom: 30px;
}

.bpo__cta {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 30px;
}

/* ===================================
   Strengths Section
   =================================== */
.strengths {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.strengths__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.strength-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

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

.strength-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.strength-card:hover .strength-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.strength-card__icon--cost {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.strength-card__icon--expertise {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.strength-card__icon--time {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.strength-card__icon--flexibility {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.strength-card__icon--security {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.strength-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.strength-card__text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.contact__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact__content--centered {
    display: block;
    max-width: 700px;
    margin: 60px auto 0;
}

.contact__form {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.required {
    color: #e74c3c;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 82, 163, 0.1);
}

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

.btn {
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 82, 163, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 163, 0.4);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.contact-info-card__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-color);
    letter-spacing: 0.02em;
}

.contact-info-card__item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.contact-info-card__item:last-child {
    margin-bottom: 0;
}

.contact-info-card__item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-info-card__item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info-card__item a:hover {
    opacity: 0.7;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 40px;
}

.footer__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer__brand {
    text-align: center;
}

.footer__logo-img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer__logo-img:hover {
    transform: scale(1.05);
}

.footer__brand-reading {
    font-size: 1rem;
    letter-spacing: 0.15em;
    opacity: 0.9;
    margin-bottom: 15px;
}

.footer__tagline {
    font-size: 1.1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-weight: 500;
}

.footer__tagline i {
    color: #ffd700;
}

.footer__title {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 0.02em;
    font-family: var(--font-primary);
}

.footer__text {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer__text i {
    margin-right: 10px;
    color: var(--primary-light);
}

.footer__text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__text a:hover {
    color: var(--white);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
}

.footer__link:hover {
    color: var(--white);
    border-bottom-color: var(--primary-light);
    padding-left: 10px;
}

/* ===================================
   Modal
   =================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background: var(--white);
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    margin: 20px;
}

.modal__content--small {
    max-width: 500px;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal__close:hover {
    color: var(--primary-color);
    background: rgba(0, 82, 163, 0.1);
    transform: rotate(90deg);
}

.modal__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
    letter-spacing: 0.02em;
}

.modal__body {
    color: var(--text-color);
    line-height: 1.9;
}

.modal__body h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.modal__body p {
    margin-bottom: 20px;
}

.modal__body ol,
.modal__body ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.modal__body li {
    margin-bottom: 10px;
}

.modal__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.success-modal__icon {
    font-size: 5rem;
    color: #27ae60;
    margin-bottom: 30px;
}

/* ===================================
   Scroll Animations
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    :root {
        --section-padding: 80px;
        --container-padding: 30px;
    }
    
    .nav__toggle {
        display: block;
    }
    
    .nav__menu {
        position: fixed;
        top: 80px;
        right: -100%;
        background: var(--white);
        width: 280px;
        height: calc(100vh - 80px);
        flex-direction: column;
        padding: 40px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 20px;
    }
    
    .nav__menu.active {
        right: 0;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .hero__logo-img {
        height: 90px;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__title br {
        display: block !important;
    }
    
    .hero__subtitle {
        font-size: 1.3rem;
    }
    
    .hero__subtitle br {
        display: block !important;
    }
    
    .hero__brand {
        font-size: 1.5rem;
    }
    
    .hero__feather {
        height: 60px;
        opacity: 0.2;
    }
    
    .hero__feather--1 { height: 70px; }
    .hero__feather--2 { height: 60px; }
    .hero__feather--3 { height: 50px; }
    .hero__feather--4 { height: 75px; }
    .hero__feather--5 { height: 65px; }
    .hero__feather--6 { height: 55px; }
    .hero__feather--7 { height: 62px; }
    .hero__feather--8 { height: 72px; }
    
    .about-angelo__body {
        padding: 60px 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact__content {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer__logo-img {
        height: 65px;
    }
    
    .modal__content {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --container-padding: 20px;
    }
    
    .pc-only {
        display: none;
    }
    
    .sp-only {
        display: inline;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero__logo-img {
        height: 70px;
    }
    
    .hero__title {
        font-size: 1.5rem;
        line-height: 1.5;
    }
    
    .hero__title br {
        display: block !important;
    }
    
    .hero__subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero__subtitle br {
        display: block !important;
    }
    
    .hero__brand {
        font-size: 1.3rem;
    }
    
    .hero__feather {
        height: 40px !important;
        opacity: 0.15;
    }
    
    .about-angelo__body {
        padding: 40px 25px;
    }
    
    .brand-angelo-large {
        font-size: 1.8em;
    }
    
    .about-angelo__meaning {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .challenges__grid,
    .strengths__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact__form {
        padding: 35px 25px;
    }
    
    .modal__content {
        padding: 40px 25px;
        margin: 15px;
    }
    
    .modal__title {
        font-size: 1.6rem;
    }
    
    .footer__logo-img {
        height: 55px;
    }
}

@media (max-width: 400px) {
    .hero__title {
        font-size: 1.3rem;
    }
    
    .hero__subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 350px) {
    .hero__title {
        font-size: 1.15rem;
    }
    
    .hero__subtitle {
        font-size: 0.85rem;
    }
}