:root {
    --blue: #2cafe4;
    --green: #49d486;
    --navy: #123b4a;
    --text: #496772;
    --sky: #edf9fd;
    --sky-2: #f5fcf9;
    --line: #d9edf1;
    --white: #fff;
    --radius: 14px;
    --shadow: 0 14px 40px rgba(22, 104, 135, .12);
    --font: "DM Sans", sans-serif;
    --display: "Manrope", sans-serif;
    --ease: cubic-bezier(.22, 1, .36, 1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: #fff;
    color: var(--navy);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65
}

img {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
select,
textarea {
    font: inherit
}

.container {
    width: min(1200px, calc(100% - 48px));
    margin-inline: auto
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 100;
    background: #fff;
    padding: 10px 16px;
    transform: translateY(-150%)
}

.skip-link:focus {
    transform: none
}

.header {
    height: 78px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(17, 107, 220, .08)
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--display);
    font-size: 17px;
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.5px
}

.logo img {
    width: 128px;
    height: 62px;
    object-fit: contain;
}

.logo svg {
    width: 38px;
    height: 38px;
    color: var(--blue)
}

.logo b {
    color: var(--blue)
}

.logo small {
    display: block;
    margin-top: 6px;
    font-family: var(--font);
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.7px;
    color: #678
}

.nav {
    display: flex;
    align-items: center;
    gap: 31px;
}

.nav a {
    font-size: 13px;
    font-weight: 600;
    color: #40516b;
    transition: .2s
}

.nav a:hover {
    color: var(--blue)
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border: 1px solid var(--blue);
    border-radius: 8px;
    background: var(--blue);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(17, 107, 220, .16);
    transition: transform .22s var(--ease), background .22s
}

.button:hover {
    background: #0759bf;
    transform: translateY(-2px)
}

.button-small {
    min-height: 42px;
    padding: 10px 19px
}

.button-outline {
    background: #fff;
    color: var(--navy);
    border-color: #b8cbe0;
    box-shadow: none
}

.button-outline:hover {
    background: var(--sky);
    color: var(--blue)
}

.menu-button {
    display: none
}

.hero {
    background: linear-gradient(115deg, #f8fdff 0%, #eaf9ff 53%, #e6fbef 100%);
    overflow: hidden
}

.hero-grid {
    min-height: 570px;
    display: grid;
    grid-template-columns: 53% 47%;
    align-items: center;
    position: relative
}

.hero-copy {
    padding: 72px 60px 112px 4px;
    position: relative;
    z-index: 2
}

.pill,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px
}

.pill {
    padding: 7px 12px;
    border-radius: 99px;
    background: rgba(17, 107, 220, .08)
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(48px, 5.2vw, 72px);
    line-height: 1.08;
    letter-spacing: -3px;
    margin: 17px 0 18px
}

.hero h1 em {
    font-style: normal;
    color: var(--blue)
}

.hero-copy>p {
    max-width: 550px;
    margin: 0;
    color: var(--text);
    font-size: 17px
}

.hero-benefits {
    display: flex;
    gap: 22px;
    margin: 28px 0
}

.hero-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #31445d
}

.hero-benefits i {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--blue);
    font-style: normal;
    box-shadow: 0 5px 15px rgba(17, 107, 220, .1)
}

.hero-actions {
    display: flex;
    gap: 12px
}

.hero-photo {
    height: 570px;
    align-self: stretch;
    background: url('assets/do-dental-hero.png') 58% center/cover no-repeat;
    position: relative;
    border-radius: 1000px;
    box-shadow: -22px 0 0 rgba(255, 255, 255, .8)
}

.photo-badge {
    position: absolute;
    right: 7%;
    bottom: 52px;
    background: #fff;
    border-radius: 12px;
    padding: 13px 17px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow)
}

.photo-badge b {
    font-family: var(--display);
    font-size: 25px;
    color: var(--blue)
}

.photo-badge small {
    font-size: 9px;
    line-height: 1.4;
    color: #6a7b90
}

.photo-badge small:first-line {
    color: #ffb217
}

.quick-services {
    position: relative;
    margin-top: -66px;
    z-index: 4
}

.quick-grid {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 18px 55px rgba(26, 78, 130, .13);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding: 22px 15px
}

.quick-grid article {
    text-align: center;
    padding: 6px 15px;
    border-right: 1px solid var(--line)
}

.quick-grid article:last-child {
    border: 0
}

.icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    display: grid;
    place-items: center;
    background: var(--sky);
    border-radius: 50%;
    color: var(--blue);
    font-size: 22px
}

.quick-grid h3 {
    font-family: var(--display);
    font-size: 12px;
    margin: 0 0 2px
}

.quick-grid p {
    color: #728398;
    font-size: 10px;
    margin: 0
}

.section {
    padding: 94px 0
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 76px;
    align-items: center
}

.about {
    padding-top: 112px
}

.about-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.about-collage img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px
}

.about-collage .about-main {
    height: 310px;
    grid-column: 1/-1
}

.about-copy h2,
.section-title h2,
.contact-copy h2 {
    font-family: var(--display);
    font-size: clamp(34px, 3.8vw, 48px);
    line-height: 1.15;
    letter-spacing: -1.8px;
    margin: 10px 0 18px
}

.about-copy h2 span,
.section-title h2 span {
    color: var(--blue)
}

.about-copy>p:not(.section-label) {
    color: var(--text);
    max-width: 530px
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.check-list li {
    font-size: 13px;
    font-weight: 600;
    color: #3d5068;
    position: relative;
    padding-left: 25px
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: #fff;
    font-size: 9px
}

.why {
    background: var(--sky)
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 43px
}

.section-title>p:last-child {
    color: #6b7b90;
    margin: 0
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px
}

.why-grid article {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 25px 21px;
    border: 1px solid #e4eff8;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(33, 86, 135, .05)
}

.feature-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--sky);
    color: var(--blue);
    font-size: 11px;
    font-weight: 800
}

.why-grid h3 {
    font-family: var(--display);
    font-size: 14px;
    line-height: 1.35;
    margin: 2px 0 7px
}

.why-grid p {
    font-size: 11px;
    color: #718196;
    line-height: 1.55;
    margin: 0
}

.services {
    background: #fff
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.service-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(28, 73, 117, .07);
    transition: transform .25s var(--ease), box-shadow .25s
}

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

.service-card>img {
    width: 100%;
    height: 150px;
    object-fit: cover
}

.service-card>div {
    padding: 21px;
    position: relative
}

.card-icon {
    position: absolute;
    right: 20px;
    top: -20px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--blue);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(17, 107, 220, .14)
}

.service-card h3 {
    font-family: var(--display);
    font-size: 16px;
    margin: 0 0 7px
}

.service-card p {
    font-size: 12px;
    color: #718196;
    margin: 0 0 17px
}

.service-card footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid #edf2f7;
    font-size: 11px
}

.service-card footer b {
    color: var(--navy)
}

.service-card footer a {
    color: var(--blue);
    font-weight: 700
}

.prices-note,
.demo-note {
    text-align: center;
    font-size: 10px;
    color: #8b98a8;
    margin: 20px 0 0
}

.testimonials {
    background: var(--sky-2)
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.testimonials-grid article {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px
}

.stars {
    color: #ffb318;
    font-size: 12px;
    letter-spacing: 3px
}

.testimonials-grid article>p {
    font-size: 13px;
    color: #53657b;
    line-height: 1.75;
    margin: 14px 0 22px
}

.testimonials-grid footer {
    display: flex;
    align-items: center;
    gap: 11px
}

.testimonials-grid footer>span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--sky);
    color: var(--blue);
    font-size: 10px;
    font-weight: 800
}

.testimonials-grid footer b,
.testimonials-grid footer small {
    display: block
}

.testimonials-grid footer b {
    font-size: 11px
}

.testimonials-grid footer small {
    font-size: 9px;
    color: #8794a4
}

.contact-section {
    padding: 76px 0;
    background: #fff
}

.promo-section { padding: 76px 0 0; background: #fff; }
.promo-card { min-height: 220px; padding: 42px 50px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; overflow: hidden; position: relative; border-radius: 18px; color: #fff; background: linear-gradient(125deg, #123b4a 0%, #168fc2 58%, #49d486 145%); box-shadow: 0 24px 60px rgba(15,87,114,.2); }
.promo-card:before,.promo-card:after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.promo-card:before { width: 280px; height: 280px; right: -90px; top: -170px; }
.promo-card:after { width: 160px; height: 160px; left: 20%; bottom: -130px; }
.promo-seal { width: 108px; height: 108px; display: grid; place-content: center; text-align: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); outline: 7px solid rgba(255,255,255,.08); position: relative; z-index: 1; }
.promo-seal span { font-family: var(--display); font-size: 34px; font-weight: 800; line-height: 1; }
.promo-seal small { margin-top: 5px; font-size: 8px; letter-spacing: 2px; }
.promo-copy { position: relative; z-index: 1; }
.promo-copy h2 { max-width: 620px; margin: 7px 0 8px; font: 800 clamp(25px,3vw,38px)/1.15 var(--display); letter-spacing: -1.2px; }
.promo-copy p:last-child { margin: 0; color: #d9eeea; font-size: 13px; }
.promo-button { position: relative; z-index: 1; white-space: nowrap; border-color: #fff; background: #fff; color: #116e93; box-shadow: none; }
.promo-button:hover { background: #f1fbff; color: #0c5877; }

.contact-card {
    border-radius: 16px;
    background: linear-gradient(120deg, #2cafe4, #168ebc 58%, #32ba78);
    color: #fff;
    padding: 54px 60px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    position: relative;
    overflow: hidden
}

.contact-card:after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -170px;
    width: 400px;
    height: 400px;
    border: 55px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    pointer-events: none
}

.section-label.light {
    color: #d8eaff
}

.contact-copy h2 {
    font-size: 45px;
    margin-top: 10px
}

.contact-copy>p:not(.section-label) {
    font-size: 14px;
    color: #dbeaff;
    max-width: 430px
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 26px
}

.contact-details a,
.contact-details span {
    font-size: 12px;
    font-weight: 700
}

.form {
    position: relative;
    z-index: 2;
    background: #fff;
    color: var(--navy);
    padding: 28px;
    border-radius: 12px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.form label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 13px;
    color: #526379
}

.form input,
.form select,
.form textarea {
    width: 100%;
    display: block;
    margin-top: 5px;
    padding: 10px 12px;
    border: 1px solid #d7e2ee;
    border-radius: 7px;
    background: #fbfdff;
    color: var(--navy);
    font-size: 12px;
    outline: none
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(17, 107, 220, .1)
}

.button-white {
    width: 100%;
    background: var(--blue)
}

.form-status {
    font-size: 10px;
    text-align: center;
    color: #607187;
    margin: 9px 0 0;
    min-height: 16px
}

.footer {
    background: #0d3443;
    color: #fff;
    padding: 60px 0 22px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 55px
}

.footer-logo {
    margin-bottom: 18px
}

.footer-logo img {
    width: 156px;
    height: 86px;
}

.footer-logo b {
    color: #51a5ff
}

.footer-grid>div:first-child p {
    max-width: 280px;
    color: #95a8c3;
    font-size: 12px
}

.footer-grid>div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.footer-grid h3 {
    font-family: var(--display);
    font-size: 12px;
    margin: 4px 0 10px
}

.footer-grid a,
.footer-grid p {
    font-size: 11px;
    color: #9eb0c9;
    margin: 0
}

.footer-grid a:hover {
    color: #fff
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 40px;
    padding-top: 18px;
    color: #8398b7;
    font-size: 9px
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s var(--ease), transform .65s var(--ease)
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@media(max-width:960px) {
    .header .button-small {
        display: none
    }

    .menu-button {
        display: block;
        margin-left: auto;
        border: 0;
        background: none;
        padding: 8px
    }

    .menu-button span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--navy);
        margin: 5px
    }

    .nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 78px;
        padding: 25px;
        background: #fff;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: flex-start
    }

    .nav.open {
        display: flex
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero-copy {
        padding-right: 20px
    }

    .hero-benefits {
        flex-wrap: wrap
    }

    .quick-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 20px
    }

    .quick-grid article:nth-child(3) {
        border-right: 0
    }

    .two-columns {
        gap: 40px
    }

    .why-grid {
        grid-template-columns: 1fr 1fr
    }

    .contact-card {
        gap: 35px;
        padding: 45px
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr
    }
}

@media(max-width:700px) {
    .container {
        width: min(100% - 36px, 1180px)
    }

    .header {
        height: 68px
    }

    .nav {
        top: 68px
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .hero-copy {
        text-align: center;
        padding: 62px 0 42px
    }

    .hero-copy>p {
        margin-inline: auto
    }

    .hero-benefits {
        justify-content: center
    }

    .hero-actions {
        justify-content: center
    }

    .hero-photo {
        height: 390px;
        border-radius: 48% 48% 0 0 / 20% 20% 0 0;
        box-shadow: 0 -12px 0 rgba(255, 255, 255, .75)
    }

    .quick-services {
        margin-top: -26px
    }

    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 18px 10px
    }

    .quick-grid article:nth-child(3) {
        border-right: 1px solid var(--line)
    }

    .quick-grid article:nth-child(even) {
        border-right: 0
    }

    .section {
        padding: 72px 0
    }

    .about {
        padding-top: 86px
    }

    .two-columns {
        grid-template-columns: 1fr
    }

    .about-collage {
        order: 2
    }

    .check-list {
        grid-template-columns: 1fr
    }

    .why-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .service-card>img {
        height: 205px
    }

    .contact-card {
        grid-template-columns: 1fr;
        padding: 35px 24px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }

    .footer-grid>div:first-child {
        grid-column: 1/-1
    }

    .hero h1 {
        letter-spacing: -2px
    }
}

@media(max-width:430px) {
    .hero-actions {
        flex-direction: column
    }

    .hero-actions .button {
        width: 100%
    }

    .hero-benefits {
        display: grid;
        grid-template-columns: 1fr
    }

    .quick-grid h3 {
        font-size: 11px
    }

    .about-collage .about-main {
        height: 240px
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-grid>div:first-child {
        grid-column: auto
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom span {
        display: block;
        margin-top: 4px
    }
}

.maps-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 40;
    min-height: 54px;
    padding: 0 18px 0 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    background: #123b4a;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(10, 88, 40, .28);
    transition: transform .22s var(--ease), background .22s;
}

.maps-float:hover {
    background: #2cafe4;
    transform: translateY(-3px);
}

.maps-float:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.maps-pin {
    font-size: 23px;
    line-height: 1;
}

@media(max-width:600px) {
    .maps-float {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
        min-height: 56px;
        padding: 0;
        justify-content: center;
    }

    .maps-float span:last-child {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }
}

@media(max-width:700px) {
    .promo-card { grid-template-columns: 1fr; text-align: center; padding: 38px 25px; gap: 23px; }
    .promo-seal { margin-inline: auto; }
    .promo-button { width: 100%; }
}

.carousel-pagination { display: none; }

@media(max-width:700px) {
    .mobile-carousel {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
    }

    .mobile-carousel::-webkit-scrollbar { display: none; }
    .mobile-carousel > article { flex: 0 0 calc(100% - 28px); scroll-snap-align: center; scroll-snap-stop: always; }

    .quick-grid {
        padding: 18px;
        row-gap: 0;
    }

    .quick-grid > article,
    .quick-grid > article:nth-child(3),
    .quick-grid > article:nth-child(even) {
        min-height: 142px;
        display: grid;
        place-content: center;
        border-right: 0;
        border-radius: 12px;
        background: linear-gradient(145deg, #f4fcff, #effcf5);
    }

    .testimonials-grid > article { min-height: 245px; }

    .carousel-pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        margin-top: 15px;
    }

    .quick-services .carousel-pagination { margin-top: 12px; }

    .carousel-dot {
        width: 7px;
        height: 7px;
        padding: 0;
        border: 0;
        border-radius: 99px;
        background: #b9dce7;
        cursor: pointer;
        transition: width .25s var(--ease), background .25s;
    }

    .carousel-dot.active { width: 24px; background: linear-gradient(90deg, var(--blue), var(--green)); }
}

/* Refinamiento visual DO Dental */
.button {
    border-radius: 999px;
    padding-inline: 26px;
}

.button-small { padding-inline: 22px; }

.hero-photo {
    border-radius: 42% 12% 44% 16% / 24% 16% 30% 22%;
    box-shadow: -18px 18px 0 rgba(73, 212, 134, .12), -34px -18px 0 rgba(44, 175, 228, .08);
}

.photo-badge { border-radius: 999px; padding: 12px 20px 12px 14px; }

.quick-grid {
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(44, 175, 228, .1);
    border-radius: 26px;
}

.quick-grid article {
    border: 0;
    border-radius: 18px;
    transition: background .25s, transform .25s var(--ease);
}

.quick-grid article:hover {
    background: linear-gradient(145deg, #f0faff, #effcf5);
    transform: translateY(-3px);
}

.icon { background: linear-gradient(145deg, #e6f8ff, #e7faef); }

.about-collage img { border-radius: 28px 10px 28px 10px; }
.about-collage .about-main { border-radius: 72px 18px 72px 18px; }

.why-grid article {
    border-radius: 24px 8px 24px 8px;
    border-color: rgba(44, 175, 228, .12);
}

.why-grid article:nth-child(even) { transform: translateY(16px); }
.feature-icon { border-radius: 50%; background: linear-gradient(145deg, #e6f8ff, #e7faef); }

.services .section-title,
.testimonials .section-title {
    max-width: 820px;
    margin-left: 0;
    text-align: left;
}

.service-card {
    border-radius: 30px 10px 30px 10px;
    border-color: rgba(44, 175, 228, .12);
}

.service-card:nth-child(2n) { border-radius: 10px 30px 10px 30px; }
.service-card > img { border-radius: inherit; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }

.testimonials-grid article {
    border-radius: 26px;
    border-top: 3px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, var(--blue), var(--green)) border-box;
}

.promo-card { border-radius: 42px 14px 42px 14px; }
.contact-card { border-radius: 42px 14px 42px 14px; }
.form { border-radius: 24px 8px 24px 8px; }
.form input, .form select, .form textarea { border-radius: 14px; }

.footer {
    position: relative;
    border-top: 5px solid transparent;
    border-image: linear-gradient(90deg, var(--blue), var(--green)) 1;
}

@media(max-width:960px) {
    .why-grid article:nth-child(even) { transform: none; }
}

@media(max-width:700px) {
    .hero-photo {
        border-radius: 44% 44% 12% 12% / 18% 18% 8% 8%;
        box-shadow: 0 -12px 0 rgba(73, 212, 134, .1);
    }

    .services .section-title,
    .testimonials .section-title { text-align: center; margin-inline: auto; }

    .quick-grid { border-radius: 24px; }
    .service-card, .service-card:nth-child(2n) { border-radius: 26px 10px 26px 10px; }
    .promo-card, .contact-card { border-radius: 30px 10px 30px 10px; }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *:before,
    *:after {
        transition: none !important;
        animation: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}
