:root {
    --primary: #1a3a6c;
    --secondary: #e8b015;
    --accent: #0d2b4e;
    --text: #333;
    --light: #f8f9fa;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}
.agent__profile {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 3.5rem;
    background: linear-gradient(246deg, var(--color-mint-pink), var(--color-mint-pink-dark));
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 10px 30px -10px rgba(26, 58, 108, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(142, 180, 228, 0.2);
}       
.agent__profile::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-size: 2rem 2rem;
    transform: rotate(30deg);
    z-index: 0;
}
.profile-header {
    position: relative;
    margin-bottom: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    z-index: 2;
}       
.name-title h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.03em;
    line-height: 1.1;
}       
.name-title h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary);
    margin: 0.5rem 0 0;
    position: relative;
    display: inline-block;
}        
.name-title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70%;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}     
.stats-wrapper {
    display: flex;
    gap: 1.8rem;
    background: rgba(255, 255, 255, 0.85);
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(13, 43, 78, 0.08);
    backdrop-filter: blur(6px);
}        
.stat-item {
    text-align: center;
    min-width: 100px;
}        
.stat-value {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}        
.stat-label {
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}        
.profile-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}        
.bio-text {
    color: var(--text);
    line-height: 1.8;
    font-size: 1.15rem;
    position: relative;
    padding-right: 1.5rem;
}      
.bio-text::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 0.8;
    margin-right: 0.8rem;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}       
.expertise-area {
    background: white;
    padding: 2.2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}        
.expertise-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1.8rem;
    position: relative;
    display: inline-block;
}        
.expertise-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}       
.expertise-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    list-style: none;
    padding: 0;
}        
.expertise-item {
    position: relative;
    padding-left: 1.8rem;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}        
.expertise-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-weight: bold;
}      
.quote-section {
    grid-column: span 2;
    text-align: center;
    margin-top: 1.5rem;
    padding: 2.5rem;
    background: rgba(26, 58, 108, 0.03);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}       
.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--accent);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}      
.signature {
    display: block;
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-style: normal;
}     
.animated-bg-element {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 176, 21, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    z-index: 1;
}      
.interactive-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(13, 43, 78, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-top: 2.5rem;
    display: inline-block;
}      
.interactive-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}      
.interactive-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(13, 43, 78, 0.3);
}      
.interactive-btn:hover::after {
    opacity: 1;
}       
.contact-info {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}       
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    transition: var(--transition);
}      
.contact-item:hover {
    transform: translateY(-3px);
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 992px) {
  .agent__profile {
    padding: 2.5rem 2rem;
    margin: 3rem auto;
  }
  .profile-header {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .name-title h1 {
    font-size: 2.8rem;
    text-align: center;
  }
  .name-title h2 {
    font-size: 1.25rem;
  }
  .stats-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    padding: 1rem 1.5rem;
  }
  .stats-wrapper .stat-item {
    min-width: 80px;
  }
  .profile-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .bio-text {
    font-size: 1.05rem;
  }
}
@media (max-width: 768px) {
  .agent__profile {
    padding: 2rem 1rem;
    margin: 2rem auto;
  }
  .profile-header {
    margin-bottom: 2.5rem;
  }
  .name-title h1 {
    font-size: 2.4rem;
  }
  .name-title h2 {
    font-size: 1.1rem;
  }
  .stats-wrapper {
    padding: 0.8rem 1rem;
    gap: 1rem;
  }
  .stat-value {
    font-size: 2.2rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }
  .profile-content {
    gap: 2rem;
  }
  .expertise-area {
    padding: 1.8rem;
  }
  .expertise-title {
    font-size: 1.3rem;
  }
  .expertise-list {
    grid-template-columns: 1fr;
  }
  .expertise-item {
    padding-left: 1.5rem;
    font-size: 1rem;
  }
  .quote-section {
    padding: 2rem 1rem;
  }
  .quote-text {
    font-size: 1.3rem;
  }
  .interactive-btn {
    width: 100%;
    text-align: center;
  }
  .contact-info {
    justify-content: center;
  }
}
.agent__profile {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 3.5rem;
    background: linear-gradient(246deg, var(--color-mint-pink), var(--color-mint-pink-dark));
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 10px 30px -10px rgba(26, 58, 108, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(142, 180, 228, 0.2);
}       
.agent__profile::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-size: 2rem 2rem;
    transform: rotate(30deg);
    z-index: 0;
}
.profile-header {
    position: relative;
    margin-bottom: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    z-index: 2;
}       
.name-title h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.03em;
    line-height: 1.1;
}       
.name-title h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary);
    margin: 0.5rem 0 0;
    position: relative;
    display: inline-block;
}        
.name-title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70%;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}     
.stats-wrapper {
    display: flex;
    gap: 1.8rem;
    background: rgba(255, 255, 255, 0.85);
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(13, 43, 78, 0.08);
    backdrop-filter: blur(6px);
}        
.stat-item {
    text-align: center;
    min-width: 100px;
}        
.stat-value {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}        
.stat-label {
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}        
.profile-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}        
.bio-text {
    color: var(--text);
    line-height: 1.8;
    font-size: 1.15rem;
    position: relative;
    padding-right: 1.5rem;
}      
.bio-text::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 0.8;
    margin-right: 0.8rem;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}       
.expertise-area {
    background: white;
    padding: 2.2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}        
.expertise-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1.8rem;
    position: relative;
    display: inline-block;
}        
.expertise-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}       
.expertise-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    list-style: none;
    padding: 0;
}        
.expertise-item {
    position: relative;
    padding-left: 1.8rem;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}        
.expertise-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-weight: bold;
}      
.quote-section {
    grid-column: span 2;
    text-align: center;
    margin-top: 1.5rem;
    padding: 2.5rem;
    background: rgba(26, 58, 108, 0.03);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}       
.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--accent);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}      
.signature {
    display: block;
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-style: normal;
}     
.animated-bg-element {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 176, 21, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    z-index: 1;
}      
.interactive-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(13, 43, 78, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-top: 2.5rem;
    display: inline-block;
}      
.interactive-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}      
.interactive-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(13, 43, 78, 0.3);
}      
.interactive-btn:hover::after {
    opacity: 1;
}       
.contact-info {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}       
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    transition: var(--transition);
}      
.contact-item:hover {
    transform: translateY(-3px);
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 992px) {
  .agent__profile {
    padding: 2.5rem 2rem;
    margin: 3rem auto;
  }
  .profile-header {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .name-title h1 {
    font-size: 2.8rem;
    text-align: center;
  }
  .name-title h2 {
    font-size: 1.25rem;
  }
  .stats-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    padding: 1rem 1.5rem;
  }
  .stats-wrapper .stat-item {
    min-width: 80px;
  }
  .profile-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .bio-text {
    font-size: 1.05rem;
  }
}
@media (max-width: 768px) {
  .agent__profile {
    padding: 2rem 1rem;
    margin: 2rem auto;
  }
  .profile-header {
    margin-bottom: 2.5rem;
  }
  .name-title h1 {
    font-size: 2.4rem;
  }
  .name-title h2 {
    font-size: 1.1rem;
  }
  .stats-wrapper {
    padding: 0.8rem 1rem;
    gap: 1rem;
  }
  .stat-value {
    font-size: 2.2rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }
  .profile-content {
    gap: 2rem;
  }
  .expertise-area {
    padding: 1.8rem;
  }
  .expertise-title {
    font-size: 1.3rem;
  }
  .expertise-list {
    grid-template-columns: 1fr;
  }
  .expertise-item {
    padding-left: 1.5rem;
    font-size: 1rem;
  }
  .quote-section {
    padding: 2rem 1rem;
  }
  .quote-text {
    font-size: 1.3rem;
  }
  .interactive-btn {
    width: 100%;
    text-align: center;
  }
  .contact-info {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .agent__profile {
    padding: 1rem 0.5rem;
    margin: 1rem auto;
  }
  .profile-header {
    display: block;
    text-align: center;
    margin-bottom: 2rem;
    padding: 1;
  }
  .name-title h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  .name-title h2 {
    font-size: 0.95rem;
    margin-top: 0.3rem;
  }
  .stats-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0.5rem;
    margin-top: 2vh;
  }
  .stat-item {
    min-width: auto;
    padding: 0.5rem 0;
  }
  .stat-value {
    font-size: 1.6rem;
  }
  .stat-label {
    font-size: 0.7rem;
  }
  .profile-content {
    display: block;
    gap: 1.5rem;
  }
  .bio-text {
    font-size: 0.95rem;
    padding: 0;
  }
  .expertise-area {
    padding: 1.2rem;
    margin-top: 1vh;
  }
  .expertise-title {
    font-size: 1.1rem;
  }
  .expertise-list {
    display: block;
  }
  .expertise-item {
    margin-bottom: 0.6rem;
    padding-left: 1.2rem;
    font-size: 0.95rem;
  }
  .quote-section {
    padding: 1.5rem 1rem;
  }
  .quote-text {
    font-size: 1rem;
    line-height: 1.4;
  }
  .signature {
    font-size: 0.9rem;
    margin-top: 1rem;
  }
  .interactive-btn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    font-size: 0.95rem;
    margin-top: 1.5rem;
  }
  .contact-info {
    flex-direction: column;
    gap: 0.8rem;
    align-items: stretch;
  }
  .contact-item {
    justify-content: center;
    padding: 0.5rem;
    font-size: 0.85rem;
  }
}