/* ===============================
   FRONTEND PREMIUM PINK PORTFOLIO
================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.homepage-sections{
    display:flex;
    flex-direction:column;
}

:root{
    --primary:#ff5c9f;
    --primary-dark:#f0448d;
    --primary-soft:#fff0f6;
    --pink-light:#ffeaf2;

    --white:#ffffff;
    --body:#fff8fb;

    --text:#202033;
    --muted:#6b7280;

    --border:#f5d6e2;
    --shadow:0 18px 45px rgba(255,92,159,.14);
    --shadow-soft:0 10px 28px rgba(31,41,55,.06);

    --radius:24px;
}

body{
    font-family:"Inter",sans-serif;
    background:var(--body);
    color:var(--text);
    line-height:1.7;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:min(1180px,92%);
    margin:auto;
}

/* ===============================
   NAVBAR
================================ */

.site-header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(245,214,226,.65);
}

.navbar{
    height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-size:28px;
    font-weight:800;
    color:var(--primary);
    letter-spacing:-1px;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-menu a{
    font-size:14px;
    font-weight:700;
    color:#374151;
    position:relative;
}

.nav-menu a:hover,
.nav-menu a.active{
    color:var(--primary);
}

.nav-menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    border-radius:99px;
    background:var(--primary);
    transition:.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after{
    width:100%;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:14px;
}

.nav-phone,
.btn-primary{
    background:linear-gradient(135deg,#ff5c9f,#ff8fbd);
    color:#fff;
    padding:13px 22px;
    border-radius:14px;
    font-size:14px;
    font-weight:800;
    box-shadow:0 12px 28px rgba(255,92,159,.25);
}

.mobile-toggle{
    display:none;
    border:none;
    background:var(--primary-soft);
    color:var(--primary);
    width:44px;
    height:44px;
    border-radius:14px;
    font-size:22px;
}

/* ===============================
   HERO
================================ */

.hero-section{
    position:relative;
    overflow:hidden;
    padding:70px 0 45px;
    background:
        radial-gradient(circle at 72% 20%, #ffe1ec 0, transparent 30%),
        linear-gradient(180deg,#fff,#fff5f9);
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:50px;
    align-items:center;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--primary-soft);
    color:var(--primary);
    padding:8px 16px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    margin-bottom:20px;
}

.hero-title{
    font-family:"Playfair Display",serif;
    font-size:64px;
    line-height:1.08;
    letter-spacing:-1.5px;
    margin-bottom:20px;
}

.hero-title span{
    color:var(--primary);
}

.hero-subtitle{
    font-size:26px;
    font-weight:800;
    line-height:1.35;
    margin-bottom:18px;
}

.hero-description{
    color:var(--muted);
    max-width:540px;
    margin-bottom:28px;
}

.hero-actions{
    display:flex;
    gap:16px;
    align-items:center;
    margin-bottom:28px;
}

.btn-outline{
    background:#fff;
    border:1px solid var(--border);
    color:#374151;
    padding:13px 22px;
    border-radius:14px;
    font-size:14px;
    font-weight:800;
    box-shadow:var(--shadow-soft);
}

.hero-socials{
    display:flex;
    gap:14px;
}

.hero-socials a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    display:grid;
    place-items:center;
    box-shadow:var(--shadow-soft);
    font-size:13px;
    font-weight:800;
}


.hero-image-wrap{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image{
    height:350px;
    width:80%;
    margin:0 auto;
    overflow:hidden;
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    display:block;
}


.floating-card{
    position:absolute;
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,.9);
    border-radius:20px;
    padding:18px;
    box-shadow:var(--shadow);
}

.floating-card h4{
    font-size:12px;
    color:var(--muted);
}

.floating-card strong{
    font-size:24px;
    color:var(--text);
}

.float-one{
    top:12%;
    left:-25px;
}

.float-two{
    right:15px;
    top:34%;
}

.float-three{
    left:15%;
    bottom:6%;
}

/* ===============================
   STATS
================================ */

.stats-wrap{
    margin-top:-10px;
    position:relative;
    z-index:5;
}

.stats-grid{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    box-shadow:var(--shadow);
    padding:26px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-item{
    display:flex;
    align-items:center;
    gap:16px;
}

.stat-icon{
    width:50px;
    height:50px;
    border-radius:16px;
    background:var(--primary-soft);
    color:var(--primary);
    display:grid;
    place-items:center;
    font-weight:800;
}

.stat-item h3{
    color:var(--primary);
    font-size:30px;
    line-height:1;
}

.stat-item p{
    color:var(--muted);
    font-size:13px;
}

/* ===============================
   SECTIONS
================================ */

.section{
    padding:80px 0;
}

.section-soft{
    background:linear-gradient(180deg,#fff0f6,#fff);
}

.section-header{
    text-align:center;
    max-width:650px;
    margin:0 auto 42px;
}

.section-label{
    display:inline-flex;
    padding:7px 14px;
    border-radius:999px;
    background:var(--primary-soft);
    color:var(--primary);
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-header h2{
    font-family:"Playfair Display",serif;
    font-size:42px;
    line-height:1.15;
    margin-bottom:12px;
}

.section-header p{
    color:var(--muted);
}

/* ===============================
   SERVICES
================================ */

.service-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;
}

.service-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:26px;
    box-shadow:var(--shadow-soft);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}

.service-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    background:var(--primary-soft);
    color:var(--primary);
    display:grid;
    place-items:center;
    margin-bottom:18px;
    font-weight:800;
}

.service-card h3{
    font-size:16px;
    margin-bottom:10px;
}

.service-card p{
    color:var(--muted);
    font-size:14px;
}

/* ===============================
   PROJECTS / BLOGS
================================ */

.card-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.project-card,
.blog-card,
.testimonial-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow-soft);
    transition:.3s;
}

.project-card:hover,
.blog-card:hover,
.testimonial-card:hover{
    transform:translateY(-7px);
    box-shadow:var(--shadow);
}

.card-img{
    height:210px;
    background:#fff0f6;
    overflow:hidden;
}

.card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.card-body{
    padding:22px;
}

.card-category{
    display:inline-block;
    background:var(--primary-soft);
    color:var(--primary);
    padding:5px 10px;
    border-radius:999px;
    font-size:11px;
    font-weight:800;
    margin-bottom:10px;
}

.card-body h3{
    font-size:18px;
    margin-bottom:10px;
}

.card-body p{
    color:var(--muted);
    font-size:14px;
    margin-bottom:16px;
}

.read-link{
    color:var(--primary);
    font-weight:800;
    font-size:14px;
}

/* ===============================
   SKILLS
================================ */

.skills-layout{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:45px;
    align-items:start;
}

.skill-columns{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.skill-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:24px;
    box-shadow:var(--shadow-soft);
}

.skill-box h3{
    margin-bottom:18px;
}

.skill-item{
    margin-bottom:18px;
}

.skill-top{
    display:flex;
    justify-content:space-between;
    font-size:14px;
    font-weight:700;
    margin-bottom:8px;
}

.skill-bar{
    height:8px;
    background:#ffe0eb;
    border-radius:999px;
    overflow:hidden;
}

.skill-fill{
    height:100%;
    background:linear-gradient(135deg,#ff5c9f,#ff8fbd);
    border-radius:999px;
}

/* ===============================
   TESTIMONIALS
================================ */

.testimonial-card{
    padding:28px;
}

.testimonial-head{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:16px;
}

.testimonial-img{
    width:58px;
    height:58px;
    border-radius:50%;
    background:var(--primary-soft);
    overflow:hidden;
}

.stars{
    color:#fbbf24;
    margin-top:10px;
}

/* ===============================
   CTA
================================ */

.contact-cta{
    background:linear-gradient(135deg,#ffe3ef,#fff0f6);
    border-radius:30px;
    padding:42px;
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:30px;
    align-items:center;
    box-shadow:var(--shadow);
}

.cta-info{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.cta-box{
    background:rgba(255,255,255,.78);
    border:1px solid #fff;
    border-radius:20px;
    padding:18px;
}

/* ===============================
   FOOTER
================================ */

.site-footer{
    background:#fff;
    padding:60px 0 20px;
    border-top:1px solid var(--border);
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:35px;
}

.footer-col h3{
    color:var(--primary);
    font-size:28px;
    margin-bottom:12px;
}

.footer-col h4{
    margin-bottom:14px;
}

.footer-col p,
.footer-col li,
.footer-col a{
    color:var(--muted);
    font-size:14px;
}

.footer-col ul{
    list-style:none;
}

.footer-col li{
    margin-bottom:8px;
}

.social-links{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.social-links a{
    background:var(--primary-soft);
    color:var(--primary);
    padding:8px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
}

.footer-bottom{
    margin-top:40px;
    padding-top:18px;
    border-top:1px solid var(--border);
    text-align:center;
    color:var(--muted);
    font-size:13px;
}

/* ===============================
   ANIMATIONS
================================ */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:.8s ease;
}

.reveal.show{
    opacity:1;
    transform:translateY(0);
}

/* ===============================
   SCROLL TOP
================================ */

.scroll-top{
    position:fixed;
    right:25px;
    bottom:25px;

    width:50px;
    height:50px;

    border:none;
    cursor:pointer;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #ff5c9f,
        #ff8fbd
    );

    color:#fff;

    font-size:20px;
    font-weight:700;

    box-shadow:
    0 12px 25px rgba(255,92,159,.3);

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:999;
}

.scroll-top.show{
    opacity:1;
    visibility:visible;
}

.about-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:30px;
}

.about-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:34px;
    box-shadow:var(--shadow-soft);
}

.about-card h3{
    font-size:24px;
    margin-bottom:16px;
}

.about-card p{
    color:var(--muted);
}

.about-list{
    list-style:none;
}

.about-list li{
    background:var(--primary-soft);
    color:#374151;
    padding:12px 16px;
    border-radius:14px;
    margin-bottom:12px;
    font-weight:700;
}


.blog-details-layout{
    display:grid;
    grid-template-columns:1fr 330px;
    gap:35px;
    align-items:start;
}

.blog-details-card,
.sidebar-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    box-shadow:var(--shadow-soft);
    overflow:hidden;
}

.blog-details-image{
    height:430px;
    background:var(--primary-soft);
    overflow:hidden;
}

.blog-details-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.blog-details-content{
    padding:34px;
}

.blog-excerpt{
    font-size:20px;
    font-weight:700;
    color:var(--text);
    margin-bottom:25px;
}

.blog-content{
    color:#4b5563;
    font-size:16px;
    line-height:1.9;
}

.blog-sidebar{
    display:grid;
    gap:22px;
}

.sidebar-card{
    padding:26px;
}

.sidebar-card h3{
    margin-bottom:18px;
    font-size:22px;
}

.recent-post{
    display:block;
    padding:14px 0;
    border-bottom:1px solid var(--border);
}

.recent-post strong{
    display:block;
    font-size:15px;
    color:var(--text);
}

.recent-post span{
    color:var(--muted);
    font-size:13px;
}

.pink-card{
    background:linear-gradient(135deg,#fff0f6,#ffffff);
}

.pink-card p{
    color:var(--muted);
    margin-bottom:20px;
}

@media(max-width:900px){
    .blog-details-layout{
        grid-template-columns:1fr;
    }

    .blog-details-image{
        height:280px;
    }
}


.contact-page-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:34px;
    align-items:start;
}

.contact-info-card,
.contact-form-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:34px;
    box-shadow:var(--shadow-soft);
}

.contact-info-card h3,
.contact-form-card h3{
    font-size:26px;
    margin-bottom:24px;
}

.contact-info-item{
    background:var(--primary-soft);
    border-radius:18px;
    padding:16px 18px;
    margin-bottom:14px;
}

.contact-info-item strong{
    color:var(--primary);
    display:block;
    margin-bottom:5px;
}

.contact-info-item p{
    color:var(--muted);
}

.map-section{
    padding:0 0 80px;
}

.map-box{
    border-radius:28px;
    overflow:hidden;
    border:1px solid var(--border);
    box-shadow:var(--shadow-soft);
}

@media(max-width:900px){
    .contact-page-grid{
        grid-template-columns:1fr;
    }
}

.project-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:36px;
}

.filter-btn{
    border:1px solid var(--border);
    background:#fff;
    color:#374151;
    padding:10px 18px;
    border-radius:999px;
    font-weight:800;
    cursor:pointer;
    transition:.25s;
}

.filter-btn.active,
.filter-btn:hover{
    background:linear-gradient(135deg,#ff5c9f,#ff8fbd);
    color:#fff;
    border-color:transparent;
}

.project-tools{
    display:inline-block;
    color:var(--primary);
    font-weight:700;
    margin-top:4px;
}


.project-details-layout{
    display:grid;
    grid-template-columns:1fr 330px;
    gap:35px;
    align-items:start;
}

.project-details-card,
.project-sidebar .sidebar-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    box-shadow:var(--shadow-soft);
    overflow:hidden;
}

.project-details-image{
    height:430px;
    background:var(--primary-soft);
    overflow:hidden;
}

.project-details-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.project-details-content{
    padding:34px;
}

.project-details-content h3{
    font-size:24px;
    margin-bottom:14px;
    margin-top:20px;
}

.project-details-content h3:first-child{
    margin-top:0;
}

.project-details-content p{
    color:#4b5563;
    line-height:1.9;
}

.tools-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:12px;
}

.tools-list span{
    background:var(--primary-soft);
    color:var(--primary);
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:800;
}

.project-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:28px;
}

.project-sidebar{
    display:grid;
    gap:22px;
}

.project-info-item{
    display:flex;
    justify-content:space-between;
    gap:14px;
    padding:14px 0;
    border-bottom:1px solid var(--border);
}

.project-info-item strong{
    color:var(--text);
}

.project-info-item span{
    color:var(--muted);
}

@media(max-width:900px){
    .project-details-layout{
        grid-template-columns:1fr;
    }

    .project-details-image{
        height:280px;
    }
}

.resume-header-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:32px;
    padding:40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    box-shadow:var(--shadow-soft);
}

.resume-header-card h1{
    font-size:52px;
    margin-bottom:10px;
}

.resume-header-card h3{
    color:var(--primary);
    margin-bottom:16px;
}

.resume-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.resume-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:30px;
    box-shadow:var(--shadow-soft);
}

.timeline-item{
    padding:18px 0;
}

.timeline-item h4{
    margin-bottom:8px;
}

.timeline-item p{
    color:var(--muted);
}

.resume-skills{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    justify-content:center;
}

.resume-skills span{
    background:#fff;
    border:1px solid var(--border);
    padding:12px 18px;
    border-radius:999px;
    font-weight:700;
    box-shadow:var(--shadow-soft);
}

@media(max-width:768px){

    .resume-header-card{
        flex-direction:column;
        text-align:center;
    }

    .resume-grid{
        grid-template-columns:1fr;
    }

}

.search-box-wrap{
    max-width:720px;
    margin:0 auto;
}

.search-form{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:14px;
    display:flex;
    gap:12px;
    box-shadow:var(--shadow-soft);
}

.search-form .form-control{
    border:none;
    box-shadow:none;
}

.search-form .form-control:focus{
    box-shadow:none;
}

@media(max-width:600px){
    .search-form{
        flex-direction:column;
    }
}

.service-price{
    margin-top:18px;
    font-size:22px;
    font-weight:800;
    color:var(--primary);
}

.empty-state{
    grid-column:1/-1;
    text-align:center;
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:50px;
    box-shadow:var(--shadow-soft);
}

.empty-state h3{
    margin-bottom:10px;
}

.empty-state p{
    color:var(--muted);
}

.skills-category-section{
    margin-bottom:60px;
}

.skills-category-header{
    margin-bottom:25px;
}

.skills-category-header h2{
    font-family:"Playfair Display",serif;
    font-size:38px;
}

.skills-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:24px;
}

.skill-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:24px;
    box-shadow:var(--shadow-soft);
    transition:.3s;
}

.skill-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}

.skill-card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:12px;
    font-weight:700;
}

.skill-card-top strong{
    color:var(--primary);
}

.skill-card .skill-bar{
    height:10px;
    background:#ffe2ec;
    border-radius:999px;
    overflow:hidden;
}
/* ===============================
   CONTACT FORM MATCHING CARD UI
================================ */

.contact-form-card form{
    display:grid;
    gap:16px;
}

.contact-form-card .form-group{
    background:var(--primary-soft);
    border-radius:18px;
    padding:16px 18px;
    margin-bottom:0;
}

.contact-form-card label{
    display:block;
    font-size:15px;
    font-weight:800;
    color:var(--primary);
    margin-bottom:8px;
}

.contact-form-card .form-control{
    width:100%;
    min-height:46px;
    border:none;
    border-radius:12px;
    background:#fff;
    padding:0 14px;
    font-size:15px;
    color:var(--text);
    outline:none;
}

.contact-form-card textarea.form-control{
    min-height:120px;
    padding:14px;
    resize:vertical;
}

.contact-form-card .form-control:focus{
    box-shadow:0 0 0 4px rgba(255,92,159,.12);
}

.contact-form-card .btn-primary{
    border:none;
    width:100%;
    padding:16px 26px;
    border-radius:18px;
    cursor:pointer;
    font-size:16px;
}

.contact-page-grid{
    display:block;
}

.contact-form-card{
    max-width:850px;
    margin:0 auto;
}

.contact-subtitle{
    color:var(--muted);
    margin-bottom:24px;
    line-height:1.7;
}

/* ===============================
   2026 PREMIUM PUBLIC UI
================================ */

:root{
    --primary:#ee4f91;
    --primary-dark:#cf3277;
    --primary-soft:#fff0f6;
    --pink-light:#ffe5f0;
    --accent:#7658d6;
    --accent-soft:#f0ecff;
    --white:#ffffff;
    --body:#fffafb;
    --surface:#ffffff;
    --surface-dark:#1f1d2e;
    --text:#1f1d2e;
    --muted:#716d7c;
    --border:rgba(31,29,46,.1);
    --shadow:0 24px 70px rgba(83,43,66,.12);
    --shadow-soft:0 12px 36px rgba(83,43,66,.08);
    --radius:28px;
}

html{
    scroll-behavior:smooth;
}

body{
    min-width:320px;
    background:
        radial-gradient(circle at 8% 5%, rgba(255,221,235,.52), transparent 24rem),
        var(--body);
    color:var(--text);
    overflow-x:hidden;
}

::selection{
    background:var(--pink-light);
    color:var(--text);
}

.container{
    width:min(1240px,calc(100% - 48px));
}

.icon{
    display:block;
    width:1.25em;
    height:1.25em;
    flex:0 0 auto;
}

.site-header{
    background:rgba(255,250,251,.84);
    border-bottom:1px solid rgba(31,29,46,.07);
    backdrop-filter:blur(22px) saturate(160%);
    -webkit-backdrop-filter:blur(22px) saturate(160%);
}

.navbar{
    height:88px;
}

.logo{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:var(--text);
    letter-spacing:0;
}

.logo img{
    width:auto;
    max-height:48px;
}

.logo-mark{
    width:43px;
    height:43px;
    display:grid;
    place-items:center;
    border-radius:14px;
    background:linear-gradient(145deg,var(--primary),#ff8ab9);
    color:#fff;
    font-size:14px;
    font-weight:800;
    letter-spacing:.04em;
    box-shadow:0 10px 24px rgba(238,79,145,.22);
}

.logo-copy{
    display:grid;
    gap:1px;
}

.logo-copy strong{
    max-width:230px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-size:15px;
    line-height:1.2;
    color:var(--text);
}

.logo-copy small{
    color:var(--muted);
    font-size:10px;
    font-weight:700;
    line-height:1.2;
    letter-spacing:.1em;
    text-transform:uppercase;
}

.nav-menu{
    gap:8px;
    padding:5px;
    border:1px solid rgba(31,29,46,.07);
    border-radius:16px;
    background:rgba(255,255,255,.62);
}

.nav-menu a{
    padding:9px 13px;
    border-radius:11px;
    color:#555160;
    font-size:13px;
    font-weight:700;
    transition:color .25s ease,background .25s ease,transform .25s ease;
}

.nav-menu a::after{
    display:none;
}

.nav-menu a:hover,
.nav-menu a.active{
    color:var(--text);
    background:#fff;
    box-shadow:0 7px 18px rgba(35,29,45,.08);
}

.nav-phone,
.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 20px;
    border:1px solid rgba(255,255,255,.45);
    border-radius:15px;
    background:linear-gradient(135deg,var(--primary),#f875aa);
    color:#fff;
    font-size:13px;
    font-weight:800;
    box-shadow:0 14px 30px rgba(238,79,145,.24);
    transition:transform .25s ease,box-shadow .25s ease;
}

.nav-phone:hover,
.btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 36px rgba(238,79,145,.32);
}

.nav-phone-icon{
    width:26px;
    height:26px;
    display:grid;
    place-items:center;
    border-radius:9px;
    background:rgba(255,255,255,.18);
}

.nav-phone-icon .icon{
    width:13px;
    height:13px;
}

.mobile-toggle{
    position:relative;
    place-items:center;
    background:#fff;
    border:1px solid var(--border);
    color:var(--text);
    box-shadow:var(--shadow-soft);
}

.mobile-toggle .icon{
    width:21px;
    height:21px;
}

.mobile-toggle .close-icon{
    display:none;
}

.mobile-toggle[aria-expanded="true"] .menu-icon{
    display:none;
}

.mobile-toggle[aria-expanded="true"] .close-icon{
    display:block;
}

.hero-section{
    min-height:700px;
    padding:86px 0 100px;
    background:
        linear-gradient(115deg,rgba(255,255,255,.84),rgba(255,245,249,.62)),
        radial-gradient(circle at 77% 38%,rgba(238,79,145,.18),transparent 24rem);
    isolation:isolate;
}

.hero-section::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-2;
    opacity:.28;
    background-image:linear-gradient(rgba(31,29,46,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(31,29,46,.06) 1px,transparent 1px);
    background-size:64px 64px;
    mask-image:linear-gradient(to right,black,transparent 52%);
}

.hero-orb{
    position:absolute;
    z-index:-1;
    border-radius:50%;
    filter:blur(1px);
    pointer-events:none;
}

.hero-orb-one{
    top:9%;
    right:7%;
    width:390px;
    height:390px;
    border:1px solid rgba(238,79,145,.16);
    box-shadow:inset 0 0 0 65px rgba(255,255,255,.2),inset 0 0 0 66px rgba(238,79,145,.08);
}

.hero-orb-two{
    left:-90px;
    bottom:-170px;
    width:340px;
    height:340px;
    background:rgba(240,236,255,.55);
}

.hero-grid{
    grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr);
    gap:92px;
}

.hero-content{
    position:relative;
    z-index:2;
    padding:30px 0;
}

.badge,
.section-label{
    gap:8px;
    border:1px solid rgba(238,79,145,.15);
    background:rgba(255,255,255,.72);
    color:var(--primary-dark);
    letter-spacing:.11em;
    box-shadow:0 8px 24px rgba(238,79,145,.08);
}

.badge .icon{
    width:15px;
    height:15px;
}

.hero-title{
    max-width:690px;
    margin-bottom:18px;
    font-size:clamp(58px,5.4vw,82px);
    line-height:.98;
    letter-spacing:-.055em;
    text-wrap:balance;
}

.hero-title span{
    position:relative;
    display:inline-block;
    color:var(--primary);
}

.hero-title span::after{
    content:"";
    position:absolute;
    left:3%;
    right:-2%;
    bottom:-8px;
    height:10px;
    border-radius:50%;
    background:rgba(238,79,145,.16);
    transform:rotate(-1deg);
}

.hero-subtitle{
    max-width:570px;
    margin:0 0 12px;
    color:#292638;
    font-size:clamp(22px,2vw,30px);
    line-height:1.35;
    letter-spacing:-.025em;
}

.hero-description{
    max-width:570px;
    margin-bottom:30px;
    color:var(--muted);
    font-size:16px;
    line-height:1.8;
}

.hero-actions{
    gap:12px;
    margin-bottom:34px;
}

.hero-actions .btn-primary,
.hero-actions .btn-outline{
    min-height:54px;
    padding:14px 20px;
}

.btn-primary .icon,
.btn-outline .icon{
    width:18px;
    height:18px;
}

.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border:1px solid rgba(31,29,46,.11);
    border-radius:15px;
    background:rgba(255,255,255,.76);
    color:var(--text);
    box-shadow:0 12px 28px rgba(57,39,50,.07);
    transition:transform .25s ease,border-color .25s ease,background .25s ease;
}

.btn-outline:hover{
    transform:translateY(-2px);
    border-color:rgba(238,79,145,.28);
    background:#fff;
}

.hero-trust{
    display:flex;
    align-items:center;
    gap:14px;
}

.trust-avatars{
    display:flex;
}

.trust-avatars span{
    width:36px;
    height:36px;
    display:grid;
    place-items:center;
    margin-left:-8px;
    border:3px solid #fff;
    border-radius:50%;
    background:var(--surface-dark);
    color:#fff;
    font-size:8px;
    font-weight:800;
}

.trust-avatars span:first-child{
    margin-left:0;
    background:var(--primary);
}

.trust-avatars span:nth-child(2){
    background:var(--accent);
}

.hero-trust > div:last-child{
    display:grid;
    gap:2px;
}

.hero-trust strong{
    font-size:13px;
}

.hero-trust span{
    color:var(--muted);
    font-size:11px;
}

.hero-image-wrap{
    min-height:560px;
}

.hero-visual-card{
    position:relative;
    width:min(100%,470px);
    margin-left:auto;
    padding:12px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.92);
    border-radius:36px;
    background:rgba(255,255,255,.78);
    box-shadow:0 36px 90px rgba(83,43,66,.17);
    backdrop-filter:blur(18px);
}

.hero-visual-card::before{
    content:"";
    position:absolute;
    inset:-30% 20% auto -25%;
    height:230px;
    border-radius:50%;
    background:rgba(255,225,237,.7);
    filter:blur(30px);
    pointer-events:none;
}

.hero-image{
    position:relative;
    width:100%;
    height:450px;
    margin:0;
    overflow:hidden;
    border-radius:27px;
    background:linear-gradient(145deg,#f8e2da,#f5d4e3);
}

.hero-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(31,29,46,.2),transparent 38%);
    pointer-events:none;
}

.hero-image img{
    object-fit:cover;
    object-position:center 18%;
    transition:transform .6s cubic-bezier(.2,.7,.2,1);
}

.hero-visual-card:hover .hero-image img{
    transform:scale(1.025);
}

.portrait-role{
    position:absolute;
    left:20px;
    bottom:20px;
    z-index:2;
    padding:9px 13px;
    border:1px solid rgba(255,255,255,.52);
    border-radius:999px;
    background:rgba(255,255,255,.86);
    color:var(--text);
    font-size:10px;
    font-weight:800;
    letter-spacing:.1em;
    text-transform:uppercase;
    backdrop-filter:blur(14px);
}

.visual-profile{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:21px 15px 11px;
}

.visual-profile > div{
    display:grid;
    gap:2px;
}

.visual-profile > div > span{
    color:var(--muted);
    font-size:9px;
    font-weight:800;
    letter-spacing:.13em;
    text-transform:uppercase;
}

.visual-profile strong{
    font-family:"Playfair Display",serif;
    font-size:23px;
    line-height:1.15;
}

.visual-profile p{
    margin-top:4px;
    color:var(--muted);
    font-size:11px;
    line-height:1.5;
}

.profile-monogram{
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    flex:0 0 auto;
    border-radius:16px;
    background:linear-gradient(145deg,var(--primary),#ff8fba);
    color:#fff;
    font-size:13px;
    font-weight:800;
    letter-spacing:.05em;
    box-shadow:0 12px 25px rgba(238,79,145,.24);
}

.floating-card{
    z-index:3;
    border:1px solid rgba(255,255,255,.92);
    background:rgba(255,255,255,.9);
    box-shadow:0 20px 55px rgba(57,39,50,.16);
    backdrop-filter:blur(20px);
}

.floating-icon{
    width:36px;
    height:36px;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:var(--primary-soft);
    color:var(--primary);
}

.floating-icon .icon{
    width:17px;
    height:17px;
}

.float-one{
    top:14%;
    left:-65px;
}

.float-two{
    top:auto;
    right:-42px;
    bottom:15%;
}

.float-three{
    left:4%;
    bottom:4%;
}

.hero-chart-card{
    width:190px;
    padding:14px;
}

.mini-card-head{
    display:grid;
    grid-template-columns:36px 1fr auto;
    align-items:center;
    gap:8px;
    color:var(--muted);
    font-size:10px;
    font-weight:700;
}

.mini-card-head strong{
    color:#43a878;
    font-size:11px;
}

.mini-chart{
    height:42px;
    display:flex;
    align-items:flex-end;
    gap:5px;
    margin:12px 2px 0;
}

.mini-chart i{
    flex:1;
    min-height:5px;
    border-radius:5px 5px 2px 2px;
    background:linear-gradient(to top,var(--primary),#ffb3d0);
}

.hero-skill-card{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:205px;
    padding:12px;
}

.hero-skill-card > div{
    flex:1;
    display:grid;
}

.hero-skill-card strong{
    font-size:13px;
}

.hero-skill-card span{
    color:var(--muted);
    font-size:10px;
}

.floating-check{
    width:26px;
    height:26px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#e9fbf3;
    color:#3faa79;
}

.floating-check .icon{
    width:13px;
    height:13px;
}

.stats-wrap{
    z-index:6;
    margin-top:-45px;
}

.stats-grid{
    position:relative;
    padding:20px;
    border:1px solid rgba(31,29,46,.08);
    border-radius:26px;
    background:rgba(255,255,255,.88);
    box-shadow:0 24px 65px rgba(83,43,66,.12);
    backdrop-filter:blur(20px);
}

.stat-item{
    justify-content:center;
    min-height:72px;
}

.stat-item:not(:last-child){
    border-right:1px solid var(--border);
}

.stat-icon{
    width:52px;
    height:52px;
    border-radius:17px;
    background:linear-gradient(145deg,#fff0f6,#ffe4ef);
    color:var(--primary);
    box-shadow:inset 0 0 0 1px rgba(238,79,145,.08);
}

.stat-icon .icon{
    width:21px;
    height:21px;
}

.stat-item h3{
    color:var(--text);
    font-size:28px;
    letter-spacing:-.04em;
}

.stat-item p{
    margin-top:5px;
    color:var(--muted);
    font-size:11px;
    font-weight:700;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.section{
    padding:110px 0;
}

.section-soft{
    background:
        radial-gradient(circle at 10% 50%,rgba(238,79,145,.07),transparent 24rem),
        linear-gradient(180deg,#fff7fa,#fff);
}

.section-header{
    max-width:720px;
    margin-bottom:54px;
}

.section-header h2,
.section-title{
    font-size:clamp(38px,4vw,54px);
    line-height:1.04;
    letter-spacing:-.04em;
}

.section-header p{
    max-width:610px;
    margin:15px auto 0;
    font-size:15px;
}

.section-label{
    padding:8px 13px;
    font-size:10px;
}

.service-grid{
    grid-template-columns:repeat(6,1fr);
    gap:18px;
}

.service-card{
    position:relative;
    grid-column:span 2;
    min-height:270px;
    display:flex;
    flex-direction:column;
    padding:28px;
    overflow:hidden;
    border:1px solid rgba(31,29,46,.08);
    border-radius:25px;
    background:rgba(255,255,255,.82);
    box-shadow:0 12px 36px rgba(83,43,66,.07);
}

.service-card:nth-last-child(-n+2){
    grid-column:span 3;
}

.service-card::before{
    content:"";
    position:absolute;
    right:-65px;
    bottom:-85px;
    width:170px;
    height:170px;
    border-radius:50%;
    background:var(--primary-soft);
    transition:transform .4s ease;
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:rgba(238,79,145,.2);
    box-shadow:0 24px 55px rgba(83,43,66,.13);
}

.service-card:hover::before{
    transform:scale(1.22);
}

.service-card-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:30px;
}

.service-icon{
    width:58px;
    height:58px;
    margin:0;
    border-radius:18px;
    background:linear-gradient(145deg,var(--primary),#ff91bb);
    color:#fff;
    box-shadow:0 14px 28px rgba(238,79,145,.22);
}

.service-icon .icon{
    width:25px;
    height:25px;
}

.service-number{
    color:#d9d4dc;
    font-family:"Playfair Display",serif;
    font-size:27px;
    font-weight:700;
}

.service-card h3{
    position:relative;
    z-index:1;
    max-width:280px;
    margin-bottom:12px;
    font-size:20px;
    letter-spacing:-.02em;
}

.service-card p{
    position:relative;
    z-index:1;
    max-width:330px;
    font-size:13px;
    line-height:1.75;
}

.service-arrow{
    position:absolute;
    right:24px;
    bottom:22px;
    z-index:1;
    width:38px;
    height:38px;
    display:grid;
    place-items:center;
    border:1px solid rgba(31,29,46,.08);
    border-radius:13px;
    background:#fff;
    color:var(--text);
    transition:background .25s ease,color .25s ease,transform .25s ease;
}

.service-card:hover .service-arrow{
    transform:rotate(6deg);
    background:var(--surface-dark);
    color:#fff;
}

.service-arrow .icon{
    width:16px;
    height:16px;
}

.project-grid{
    gap:22px;
}

.project-card,
.blog-card,
.testimonial-card{
    border:1px solid rgba(31,29,46,.08);
    border-radius:26px;
    background:rgba(255,255,255,.9);
    box-shadow:0 12px 36px rgba(83,43,66,.07);
}

.project-card{
    display:flex;
    flex-direction:column;
}

.project-card:last-child:nth-child(3n+1){
    grid-column:2;
}

.project-card:hover,
.blog-card:hover,
.testimonial-card:hover{
    transform:translateY(-7px);
    border-color:rgba(238,79,145,.18);
    box-shadow:0 24px 58px rgba(83,43,66,.13);
}

.card-img{
    position:relative;
    height:245px;
}

.project-visual,
.blog-visual{
    display:block;
    overflow:hidden;
}

.project-visual{
    isolation:isolate;
}

.project-visual::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-2;
    background:linear-gradient(145deg,#2d2942,#594675);
}

.project-visual-2::before{
    background:linear-gradient(145deg,#4e3151,#bc628a);
}

.project-visual-3::before{
    background:linear-gradient(145deg,#293e50,#4e8395);
}

.project-visual-4::before{
    background:linear-gradient(145deg,#39314f,#7b5aa7);
}

.project-visual-grid{
    position:absolute;
    inset:0;
    z-index:-1;
    opacity:.16;
    background-image:linear-gradient(rgba(255,255,255,.45) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.45) 1px,transparent 1px);
    background-size:34px 34px;
}

.project-visual-icon{
    position:absolute;
    top:25px;
    left:25px;
    width:54px;
    height:54px;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.25);
    border-radius:18px;
    background:rgba(255,255,255,.14);
    color:#fff;
    backdrop-filter:blur(12px);
}

.project-visual-icon .icon{
    width:25px;
    height:25px;
}

.project-visual-chart{
    position:absolute;
    right:25px;
    bottom:26px;
    left:25px;
    height:100px;
    display:flex;
    align-items:flex-end;
    gap:13px;
}

.project-visual-chart i{
    flex:1;
    border-radius:10px 10px 3px 3px;
    background:linear-gradient(to top,rgba(255,255,255,.3),rgba(255,255,255,.86));
}

.project-index{
    position:absolute;
    top:28px;
    right:28px;
    color:rgba(255,255,255,.65);
    font-family:"Playfair Display",serif;
    font-size:28px;
    font-weight:700;
}

.card-body{
    flex:1;
    display:flex;
    flex-direction:column;
    padding:26px;
}

.card-category{
    align-self:flex-start;
    padding:6px 10px;
    border:1px solid rgba(238,79,145,.1);
    font-size:9px;
    letter-spacing:.09em;
    text-transform:uppercase;
}

.card-body h3{
    margin:4px 0 11px;
    font-size:20px;
    line-height:1.35;
    letter-spacing:-.025em;
}

.card-body p{
    font-size:13px;
    line-height:1.7;
}

.card-tools{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin:-2px 0 20px;
}

.card-tools span{
    padding:5px 8px;
    border:1px solid var(--border);
    border-radius:8px;
    color:var(--muted);
    font-size:9px;
    font-weight:700;
}

.read-link{
    display:inline-flex;
    align-items:center;
    gap:7px;
    margin-top:auto;
    color:var(--text);
    font-size:12px;
    letter-spacing:.02em;
}

.read-link .icon{
    width:15px;
    height:15px;
    color:var(--primary);
    transition:transform .25s ease;
}

.read-link:hover .icon{
    transform:translate(2px,-2px);
}

.skills-layout{
    grid-template-columns:340px 1fr;
    gap:60px;
}

.skills-layout > div:first-child{
    position:sticky;
    top:130px;
}

.skill-columns{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.skill-box{
    padding:25px;
    border:1px solid rgba(31,29,46,.08);
    border-radius:24px;
    box-shadow:0 12px 36px rgba(83,43,66,.07);
}

.skill-box:last-child:nth-child(odd){
    grid-column:1/-1;
}

.skill-box-title{
    display:flex;
    align-items:center;
    gap:11px;
    margin-bottom:23px;
}

.skill-box-title > span{
    width:38px;
    height:38px;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:var(--accent-soft);
    color:var(--accent);
}

.skill-box-title .icon{
    width:17px;
    height:17px;
}

.skill-box h3{
    margin:0;
    font-size:17px;
}

.skill-item:last-child{
    margin-bottom:0;
}

.skill-top{
    font-size:12px;
}

.skill-top span:last-child{
    color:var(--primary);
}

.skill-bar{
    height:7px;
    background:#f2edf0;
}

.skill-fill{
    position:relative;
    background:linear-gradient(90deg,var(--primary),#ff92ba);
}

.skill-fill::after{
    content:"";
    position:absolute;
    top:50%;
    right:0;
    width:11px;
    height:11px;
    border:3px solid #fff;
    border-radius:50%;
    background:var(--primary);
    box-shadow:0 2px 8px rgba(238,79,145,.3);
    transform:translate(50%,-50%);
}

.testimonial-grid{
    gap:20px;
}

.testimonial-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-height:315px;
    padding:28px;
    overflow:hidden;
}

.testimonial-card::after{
    content:"";
    position:absolute;
    right:-38px;
    bottom:-42px;
    width:130px;
    height:130px;
    border-radius:50%;
    background:var(--primary-soft);
}

.quote-icon{
    position:absolute;
    top:25px;
    right:25px;
    color:rgba(238,79,145,.15);
}

.quote-icon .icon{
    width:48px;
    height:48px;
    fill:currentColor;
    stroke-width:0;
}

.testimonial-card .stars{
    margin:0 0 20px;
    color:#efaa3f;
    font-size:13px;
    letter-spacing:.16em;
}

.testimonial-message{
    position:relative;
    z-index:1;
    margin-bottom:25px;
    color:#45404e;
    font-family:"Playfair Display",serif;
    font-size:18px;
    line-height:1.65;
}

.testimonial-head{
    position:relative;
    z-index:1;
    margin:auto 0 0;
    padding-top:20px;
    border-top:1px solid var(--border);
}

.testimonial-img{
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    border:3px solid #fff;
    background:linear-gradient(145deg,var(--primary),#ff9cc1);
    color:#fff;
    font-size:15px;
    font-weight:800;
    box-shadow:0 8px 18px rgba(238,79,145,.18);
}

.testimonial-head h3{
    font-size:14px;
}

.testimonial-head p{
    color:var(--muted);
    font-size:10px;
}

.testimonial-head p:not(.testimonial-role){
    display:none;
}

.testimonial-role span{
    padding:0 3px;
}

.blog-grid{
    gap:22px;
}

.blog-visual{
    isolation:isolate;
    background:linear-gradient(145deg,#ede8ff,#d9ccff);
}

.blog-visual-2{
    background:linear-gradient(145deg,#ffe1ed,#ffb8d3);
}

.blog-visual-3{
    background:linear-gradient(145deg,#dff4f0,#a5dacf);
}

.blog-visual::before,
.blog-visual::after{
    content:"";
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.35);
}

.blog-visual::before{
    width:170px;
    height:170px;
    right:-30px;
    top:-45px;
}

.blog-visual::after{
    width:110px;
    height:110px;
    left:-28px;
    bottom:-40px;
}

.blog-visual-icon{
    position:absolute;
    top:50%;
    left:50%;
    z-index:2;
    width:78px;
    height:78px;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.52);
    border-radius:25px;
    background:rgba(255,255,255,.48);
    color:#625296;
    box-shadow:0 18px 35px rgba(69,53,103,.13);
    backdrop-filter:blur(12px);
    transform:translate(-50%,-50%) rotate(-5deg);
}

.blog-visual-2 .blog-visual-icon{
    color:var(--primary-dark);
}

.blog-visual-3 .blog-visual-icon{
    color:#2b7a6d;
}

.blog-visual-icon .icon{
    width:34px;
    height:34px;
}

.blog-visual-lines{
    position:absolute;
    right:24px;
    bottom:22px;
    z-index:2;
    display:grid;
    gap:5px;
}

.blog-visual-lines i{
    width:46px;
    height:4px;
    border-radius:9px;
    background:rgba(255,255,255,.7);
}

.blog-visual-lines i:nth-child(2){
    width:33px;
}

.blog-visual-lines i:nth-child(3){
    width:20px;
}

.contact-cta{
    position:relative;
    overflow:hidden;
    grid-template-columns:1fr auto;
    padding:55px;
    border:1px solid rgba(255,255,255,.7);
    border-radius:34px;
    background:
        radial-gradient(circle at 88% 25%,rgba(255,255,255,.34),transparent 12rem),
        linear-gradient(135deg,#fbd8e7,#f0e8ff);
    box-shadow:0 25px 70px rgba(83,43,66,.13);
}

.contact-cta::before{
    content:"";
    position:absolute;
    right:-90px;
    bottom:-150px;
    width:360px;
    height:360px;
    border:1px solid rgba(238,79,145,.16);
    border-radius:50%;
    box-shadow:inset 0 0 0 70px rgba(255,255,255,.12),inset 0 0 0 71px rgba(238,79,145,.1);
}

.contact-cta > *{
    position:relative;
    z-index:1;
}

.contact-cta h2{
    max-width:650px;
    margin-bottom:12px;
    font-family:"Playfair Display",serif;
    font-size:clamp(34px,4vw,52px);
    line-height:1.1;
    letter-spacing:-.035em;
}

.contact-cta p{
    max-width:620px;
    color:#655e6f;
}

.cta-single-action{
    display:block;
}

.cta-single-action .btn-primary{
    min-width:165px;
    min-height:55px;
}

.site-footer{
    padding:80px 0 24px;
    border-top:1px solid rgba(31,29,46,.07);
    background:#211f2e;
    color:#fff;
}

.footer-grid{
    grid-template-columns:1.6fr .8fr 1fr .7fr;
    gap:54px;
}

.footer-logo{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    color:#fff;
    font-size:16px;
    font-weight:800;
}

.footer-brand p{
    max-width:340px;
    margin-bottom:20px;
    color:#aaa5b4;
    line-height:1.8;
}

.footer-email{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#fff!important;
}

.footer-email .icon{
    width:15px;
    height:15px;
    color:#ff87b7;
}

.footer-col h4{
    margin:12px 0 20px;
    color:#fff;
    font-size:11px;
    letter-spacing:.13em;
    text-transform:uppercase;
}

.footer-col p,
.footer-col li,
.footer-col a{
    color:#aaa5b4;
    font-size:12px;
}

.footer-col li{
    margin-bottom:11px;
}

.footer-col a:hover{
    color:#fff;
}

.social-links{
    gap:8px;
}

.social-links a{
    width:39px;
    height:39px;
    display:grid;
    place-items:center;
    padding:0;
    border:1px solid rgba(255,255,255,.1);
    border-radius:12px;
    background:rgba(255,255,255,.06);
    color:#fff;
    transition:transform .25s ease,background .25s ease;
}

.social-links a:hover{
    transform:translateY(-3px);
    background:var(--primary);
}

.social-links .icon{
    width:16px;
    height:16px;
}

.footer-bottom{
    margin-top:55px;
    padding-top:22px;
    border-top-color:rgba(255,255,255,.08);
    color:#817c8d;
}

.scroll-top{
    width:46px;
    height:46px;
    border:1px solid rgba(255,255,255,.55);
    border-radius:15px;
    background:var(--surface-dark);
    box-shadow:0 12px 28px rgba(31,29,46,.22);
}

.scroll-top svg{
    width:20px;
    height:20px;
    margin:auto;
}

.reveal{
    transform:translateY(28px);
    transition:opacity .75s ease,transform .75s cubic-bezier(.2,.7,.2,1);
}

@media (prefers-reduced-motion:reduce){
    *,
    *::before,
    *::after{
        scroll-behavior:auto!important;
        animation-duration:.01ms!important;
        animation-iteration-count:1!important;
        transition-duration:.01ms!important;
    }
}

.success-alert{
    background:#ecfdf3;
    color:#15803d;
    border:1px solid #bbf7d0;
    padding:15px 20px;
    border-radius:12px;
    margin-bottom:20px;
    font-weight:600;
}
