:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-87764d0 *//* ==================================================
   METRICOVA VIDEO EDITING PAGE
================================================== */

.metricova-video-editing {
    --dark: #224248;
    --blue: #325E6A;
    --teal: #44A1A4;
    --orange: #FF9A00;
    --white: #ffffff;
    --offwhite: #f5f7f5;
    --text: #45585c;
    --line: rgba(34, 66, 72, .15);

    width: 100%;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark);
}

.metricova-video-editing *,
.metricova-video-editing *::before,
.metricova-video-editing *::after {
    box-sizing: border-box;
}

.metricova-video-editing h1,
.metricova-video-editing h2,
.metricova-video-editing h3,
.metricova-video-editing p {
    margin-top: 0;
}

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

.ve-small-label,
.ve-section-heading > span {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
}



/* ==================================================
   HERO
================================================== */

.ve-hero {
    position: relative;
    background: var(--dark);
    color: var(--white);
    padding: 105px 0 0;
    overflow: hidden;
}

.ve-hero::before {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    left: -280px;
    top: -210px;
}

.ve-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--orange);
    border-radius: 50%;
    right: -180px;
    bottom: 40px;
    opacity: .1;
}

.ve-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
}

.ve-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--teal);
}

.ve-record-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 6px rgba(255, 154, 0, .13);
    animation: veRecord 1.5s infinite;
}

@keyframes veRecord {
    50% {
        box-shadow: 0 0 0 12px rgba(255, 154, 0, 0);
    }
}

.ve-hero h1 {
    max-width: 650px;
    margin-bottom: 26px;
    font-size: clamp(48px, 5.2vw, 78px);
    line-height: .98;
    letter-spacing: -4px;
    font-weight: 800;
}

.ve-hero h1 span {
    display: block;
    color: var(--orange);
}

.ve-hero-text {
    max-width: 650px;
    margin-bottom: 32px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .74);
}

.ve-hero-text strong {
    color: var(--white);
}

.ve-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ve-btn-primary,
.ve-btn-outline {
    min-height: 54px;
    padding: 0 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: .3s;
}

.ve-btn-primary {
    background: var(--orange);
    color: var(--dark);
}

.ve-btn-primary span {
    font-size: 22px;
    transition: .3s;
}

.ve-btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.ve-btn-primary:hover span {
    transform: translateX(4px);
}

.ve-btn-outline {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .28);
}

.ve-btn-outline:hover {
    border-color: var(--teal);
    background: var(--teal);
}

.ve-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 33px;
}

.ve-hero-tags span {
    border: 1px solid rgba(255,255,255,.12);
    padding: 8px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.6);
}



/* ==================================================
   EDITOR UI
================================================== */

.ve-editor {
    position: relative;
    background: #172f34;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 25px 30px 60px rgba(0,0,0,.2);
    transform: rotate(1.5deg);
}

.ve-editor-top {
    height: 40px;
    padding: 0 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.09);
}

.ve-editor-dots {
    display: flex;
    gap: 6px;
}

.ve-editor-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

.ve-editor-dots span:nth-child(2) {
    background: var(--orange);
}

.ve-editor-dots span:nth-child(3) {
    background: var(--teal);
}

.ve-project-name {
    font-size: 8px;
    letter-spacing: 1px;
    color: rgba(255,255,255,.35);
}

.ve-preview {
    position: relative;
    height: 315px;
    overflow: hidden;
    background: var(--blue);
}

.ve-preview-label {
    position: absolute;
    left: 12px;
    top: 10px;
    z-index: 3;
    font-size: 8px;
    letter-spacing: 1px;
    color: rgba(255,255,255,.5);
}

.ve-preview-shape {
    position: absolute;
    border-radius: 50%;
}

.ve-preview-shape-1 {
    width: 250px;
    height: 250px;
    background: var(--teal);
    right: -50px;
    top: -50px;
}

.ve-preview-shape-2 {
    width: 160px;
    height: 160px;
    background: var(--orange);
    left: -55px;
    bottom: -70px;
}

.ve-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,.2);
    transition: .3s;
}

.ve-editor:hover .ve-play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--orange);
    color: var(--dark);
}

.ve-preview-caption {
    position: absolute;
    z-index: 5;
    left: 30px;
    bottom: 24px;
    font-size: 28px;
    line-height: .9;
    letter-spacing: -1px;
}

.ve-preview-caption strong {
    color: var(--orange);
}

.ve-controls {
    height: 38px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 8px;
    color: rgba(255,255,255,.45);
}

.ve-control-icons {
    display: flex;
    gap: 16px;
}

.ve-control-icons i {
    font-style: normal;
    color: rgba(255,255,255,.7);
}

.ve-timeline {
    position: relative;
    padding: 12px 10px 16px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.ve-track {
    min-height: 28px;
    display: flex;
    align-items: center;
    gap: 3px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.ve-track-name {
    flex: 0 0 25px;
    color: rgba(255,255,255,.35);
    font-size: 7px;
}

.ve-clip {
    height: 21px;
    display: flex;
    align-items: center;
    padding: 0 6px;
    font-size: 6px;
    color: var(--white);
    background: var(--teal);
}

.clip-1 {
    width: 25%;
}

.clip-2 {
    width: 36%;
    background: var(--blue);
}

.clip-3 {
    width: 24%;
    background: var(--orange);
    color: var(--dark);
}

.clip-4 {
    width: 38%;
    margin-left: 12%;
    background: var(--blue);
}

.clip-5 {
    width: 28%;
    background: var(--teal);
}

.ve-audio-wave {
    width: 80%;
    overflow: hidden;
    white-space: nowrap;
    color: var(--orange);
    letter-spacing: -1px;
    font-size: 13px;
}

.ve-playhead {
    position: absolute;
    top: 7px;
    bottom: 10px;
    left: 48%;
    width: 1px;
    background: var(--orange);
    animation: playMove 4s ease-in-out infinite alternate;
}

.ve-playhead::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 7px;
    top: 0;
    left: -3px;
    background: var(--orange);
}

@keyframes playMove {
    to {
        left: 70%;
    }
}



/* ==================================================
   MARQUEE
================================================== */

.ve-marquee {
    position: relative;
    z-index: 3;
    margin-top: 90px;
    padding: 16px 0;
    overflow: hidden;
    background: var(--orange);
    color: var(--dark);
}

.ve-marquee-inner {
    width: max-content;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 3px;
    animation: veMarquee 22s linear infinite;
}

@keyframes veMarquee {
    to {
        transform: translateX(-50%);
    }
}



/* ==================================================
   INTRO
================================================== */

.ve-intro {
    padding: 110px 0;
    background: var(--white);
}

.ve-intro-number {
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--teal);
}

.ve-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 100px;
}

.ve-intro h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -3px;
}

.ve-intro h2 span {
    display: block;
    color: var(--teal);
}

.ve-intro-copy p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text);
}

.ve-intro-copy strong {
    color: var(--dark);
}



/* ==================================================
   SECTION HEADING
================================================== */

.ve-section-heading {
    max-width: 720px;
    margin-bottom: 65px;
}

.ve-section-heading h2 {
    margin: 18px 0 18px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -3px;
}

.ve-section-heading h2 strong {
    display: block;
    color: var(--teal);
}

.ve-section-heading p {
    max-width: 640px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}



/* ==================================================
   SERVICES
================================================== */

.ve-services {
    padding: 115px 0;
    background: var(--offwhite);
}

.ve-services-list {
    border-top: 1px solid var(--line);
}

.ve-service-row {
    display: grid;
    grid-template-columns: 80px 1fr 95px;
    gap: 30px;
    align-items: center;
    padding: 38px 15px;
    border-bottom: 1px solid var(--line);
    transition: .35s;
}

.ve-service-row:hover {
    padding-left: 30px;
    padding-right: 30px;
    background: var(--white);
}

.ve-service-index {
    font-size: 12px;
    font-weight: 800;
    color: var(--orange);
}

.ve-service-main h3 {
    margin-bottom: 12px;
    font-size: 25px;
    letter-spacing: -.7px;
}

.ve-service-main p {
    max-width: 780px;
    margin-bottom: 17px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
}

.ve-service-keywords {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.ve-service-keywords span {
    padding: 7px 10px;
    background: rgba(68,161,164,.08);
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
}

.ve-service-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    justify-self: end;
    border-radius: 50%;
    border: 1px solid var(--line);
    font-size: 15px;
    font-weight: 900;
    color: var(--teal);
    transition: .3s;
}

.ve-service-row:hover .ve-service-icon {
    border-radius: 20px;
    background: var(--orange);
    border-color: var(--orange);
    color: var(--dark);
    transform: rotate(6deg);
}



/* ==================================================
   TRANSFORM
================================================== */

.ve-transform {
    padding: 120px 0;
    background: var(--white);
}

.ve-transform-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 85px;
    align-items: center;
}

.ve-transform h2,
.ve-reels h2,
.ve-local h2,
.ve-process h2,
.ve-why h2 {
    margin: 18px 0 26px;
    font-size: clamp(40px, 4.6vw, 65px);
    line-height: 1;
    letter-spacing: -3px;
}

.ve-transform h2 span,
.ve-reels h2 span,
.ve-local h2 span,
.ve-process h2 span,
.ve-why h2 span {
    display: block;
    color: var(--teal);
}

.ve-transform-content p {
    color: var(--text);
    line-height: 1.85;
    font-size: 16px;
}

.ve-text-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 5px;
}

.ve-transform-board {
    display: grid;
    grid-template-columns: 1fr 55px 1fr;
    align-items: center;
    background: var(--dark);
    padding: 35px;
    min-height: 470px;
}

.ve-board-label {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--orange);
}

.ve-frame {
    height: 90px;
    margin-bottom: 8px;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.55);
    font-size: 9px;
    letter-spacing: 1px;
}

.frame-a {
    background: var(--blue);
}

.frame-b {
    background: var(--teal);
}

.frame-c {
    background: #294c54;
}

.ve-transform-arrow {
    text-align: center;
    color: var(--orange);
    font-size: 32px;
}

.ve-final-video {
    position: relative;
    height: 290px;
    padding: 24px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, var(--orange) 0 12%, transparent 13%),
        linear-gradient(140deg, var(--blue), var(--teal));
}

.ve-final-video::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -100px;
    bottom: -100px;
    border: 35px solid rgba(255,255,255,.1);
    border-radius: 50%;
}

.ve-final-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--dark);
    padding: 6px 8px;
    color: var(--white);
    font-size: 8px;
}

.ve-final-video small {
    display: block;
    margin-bottom: 6px;
    color: rgba(255,255,255,.7);
    font-size: 8px;
    letter-spacing: 2px;
}

.ve-final-video strong {
    font-size: 33px;
    line-height: .88;
    color: var(--white);
}



/* ==================================================
   REELS
================================================== */

.ve-reels {
    padding: 125px 0;
    background: var(--blue);
    color: var(--white);
}

.ve-reels-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 95px;
    align-items: center;
}

.ve-phone-stack {
    position: relative;
    min-height: 560px;
}

.ve-phone {
    position: absolute;
    width: 220px;
    height: 440px;
    padding: 12px;
    background: var(--dark);
    border: 2px solid rgba(255,255,255,.13);
    border-radius: 35px;
    box-shadow: 20px 30px 50px rgba(0,0,0,.17);
    transition: .4s;
}

.ve-phone:hover {
    z-index: 5;
    transform: translateY(-12px) rotate(0);
}

.ve-phone-one {
    left: 0;
    top: 60px;
    transform: rotate(-10deg);
}

.ve-phone-two {
    left: 160px;
    top: 0;
    z-index: 2;
}

.ve-phone-three {
    left: 320px;
    top: 70px;
    transform: rotate(10deg);
}

.ve-phone-camera {
    width: 55px;
    height: 16px;
    margin: 3px auto 10px;
    background: #152d31;
    border-radius: 12px;
}

.ve-phone-screen {
    height: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--teal);
}

.ve-phone-two .ve-phone-screen {
    background: var(--orange);
    color: var(--dark);
}

.ve-phone-three .ve-phone-screen {
    background: var(--blue);
}

.ve-phone-screen span {
    font-size: 11px;
    letter-spacing: 3px;
}

.ve-phone-screen strong {
    margin-top: 8px;
    font-size: 55px;
}

.ve-phone-caption {
    padding-top: 16px;
    text-align: center;
    color: rgba(255,255,255,.6);
    font-size: 11px;
}

.ve-reels-content .ve-small-label {
    color: var(--orange);
}

.ve-reels-content h2 span {
    color: var(--orange);
}

.ve-reels-content p {
    line-height: 1.85;
    color: rgba(255,255,255,.75);
}

.ve-reels-content strong {
    color: var(--white);
}

.ve-reels-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ve-reels-features span {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.13);
    font-size: 12px;
    color: var(--white);
}



/* ==================================================
   ELEMENTS
================================================== */

.ve-elements {
    padding: 120px 0;
    background: var(--dark);
    color: var(--white);
}

.ve-heading-light h2 {
    color: var(--white);
}

.ve-heading-light h2 strong {
    color: var(--orange);
}

.ve-heading-light p {
    color: rgba(255,255,255,.6);
}

.ve-elements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.ve-element-card {
    position: relative;
    min-height: 310px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.1);
    transition: .35s;
}

.ve-element-large {
    grid-column: span 2;
}

.ve-element-card:hover {
    background: var(--blue);
    transform: translateY(-7px);
}

.ve-card-count {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--orange);
}

.ve-element-card h3 {
    margin: 30px 0 12px;
    font-size: 24px;
}

.ve-element-card p {
    max-width: 520px;
    color: rgba(255,255,255,.6);
    font-size: 14px;
    line-height: 1.75;
}

.ve-waveform {
    margin-top: 70px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 42px;
    letter-spacing: -6px;
    color: var(--orange);
}

.ve-color-wheel {
    width: 105px;
    height: 105px;
    margin-top: 35px;
    border-radius: 50%;
    background: conic-gradient(
        var(--orange),
        var(--teal),
        var(--blue),
        var(--orange)
    );
    position: relative;
}

.ve-color-wheel::after {
    content: "";
    position: absolute;
    inset: 28px;
    background: var(--dark);
    border-radius: 50%;
}

.ve-type-demo {
    margin-top: 30px;
    font-size: 95px;
    line-height: 1;
    font-weight: 800;
    color: var(--teal);
}

.ve-motion-demo {
    position: relative;
    height: 100px;
    margin-top: 35px;
}

.ve-motion-demo span {
    position: absolute;
    width: 45px;
    height: 45px;
    background: var(--orange);
    animation: veMotion 2.4s ease-in-out infinite alternate;
}

.ve-motion-demo span:nth-child(2) {
    left: 60px;
    background: var(--teal);
    animation-delay: .3s;
}

.ve-motion-demo span:nth-child(3) {
    left: 120px;
    background: var(--blue);
    animation-delay: .6s;
}

@keyframes veMotion {
    to {
        transform: translateY(50px) rotate(45deg);
    }
}

.ve-cut-demo {
    margin-top: 55px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ve-cut-demo div {
    height: 10px;
    flex: 1;
    background: var(--teal);
}

.ve-cut-demo div:last-child {
    background: var(--orange);
}

.ve-cut-demo span {
    font-size: 11px;
    letter-spacing: 2px;
}



/* ==================================================
   USE CASES
================================================== */

.ve-usecases {
    padding: 120px 0;
    background: var(--white);
}

.ve-usecases-top {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 100px;
    align-items: end;
    margin-bottom: 60px;
}

.ve-usecases-top h2 {
    margin-top: 18px;
    margin-bottom: 0;
    font-size: clamp(40px, 4.5vw, 65px);
    line-height: 1;
    letter-spacing: -3px;
}

.ve-usecases-top h2 span {
    display: block;
    color: var(--teal);
}

.ve-usecases-top > p {
    color: var(--text);
    line-height: 1.85;
}

.ve-usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.ve-usecase {
    min-height: 230px;
    padding: 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: .3s;
}

.ve-usecase:hover {
    background: var(--dark);
    color: var(--white);
}

.ve-usecase > span {
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
}

.ve-usecase h3 {
    margin: 50px 0 12px;
    font-size: 21px;
}

.ve-usecase p {
    margin-bottom: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

.ve-usecase:hover p {
    color: rgba(255,255,255,.6);
}



/* ==================================================
   LOCAL SEO
================================================== */

.ve-local {
    padding: 125px 0;
    background: var(--offwhite);
}

.ve-local-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 95px;
    align-items: center;
}

.ve-mountain-art {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--dark);
}

.ve-sun {
    position: absolute;
    width: 130px;
    height: 130px;
    top: 70px;
    right: 70px;
    border-radius: 50%;
    background: var(--orange);
}

.ve-mountain {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border-left: 300px solid transparent;
    border-right: 300px solid transparent;
}

.mountain-one {
    border-bottom: 310px solid var(--blue);
}

.mountain-two {
    left: 25%;
    border-left-width: 220px;
    border-right-width: 220px;
    border-bottom: 230px solid var(--teal);
}

.mountain-three {
    left: 80%;
    border-left-width: 240px;
    border-right-width: 240px;
    border-bottom: 250px solid #294e57;
}

.ve-location-pin {
    position: absolute;
    z-index: 4;
    left: 48%;
    top: 48%;
    width: 46px;
    height: 46px;
    transform: rotate(45deg);
    border-radius: 50% 50% 50% 0;
    background: var(--orange);
    animation: vePin 2s ease-in-out infinite alternate;
}

.ve-location-pin span {
    position: absolute;
    width: 12px;
    height: 12px;
    top: 17px;
    left: 17px;
    border-radius: 50%;
    background: var(--dark);
}

@keyframes vePin {
    to {
        transform: rotate(45deg) translate(-8px, -8px);
    }
}

.ve-local-caption {
    position: absolute;
    z-index: 5;
    left: 25px;
    bottom: 20px;
    color: var(--white);
    font-size: 10px;
    letter-spacing: 2px;
}

.ve-local-content p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text);
}

.ve-local-content strong {
    color: var(--dark);
}

.ve-local-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
}

.ve-local-keywords span {
    padding: 9px 12px;
    border: 1px solid var(--line);
    background: var(--white);
    font-size: 10px;
    font-weight: 700;
    color: var(--blue);
}



/* ==================================================
   PROCESS
================================================== */

.ve-process {
    padding: 125px 0;
    background: var(--white);
}

.ve-process-heading {
    max-width: 700px;
    margin-bottom: 70px;
}

.ve-process-line {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 2px solid var(--dark);
}

.ve-process-step {
    position: relative;
    padding: 40px 24px 10px 0;
}

.ve-step-marker {
    position: absolute;
    top: -17px;
    left: 0;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: var(--dark);
    font-size: 9px;
    font-weight: 900;
}

.ve-process-step h3 {
    margin-top: 20px;
    margin-bottom: 11px;
    font-size: 20px;
}

.ve-process-step p {
    color: var(--text);
    font-size: 13px;
    line-height: 1.7;
}



/* ==================================================
   WHY
================================================== */

.ve-why {
    padding: 120px 0;
    background: var(--teal);
}

.ve-why-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
}

.ve-why-title .ve-small-label {
    color: var(--dark);
}

.ve-why-title h2 {
    color: var(--dark);
}

.ve-why-title h2 span {
    color: var(--white);
}

.ve-why-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(34,66,72,.24);
}

.ve-why-item > span {
    font-size: 10px;
    font-weight: 900;
    color: var(--dark);
}

.ve-why-item h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.ve-why-item p {
    margin-bottom: 0;
    line-height: 1.7;
    color: rgba(34,66,72,.8);
}



/* ==================================================
   WHY METRICOVA
================================================== */

.ve-metricova {
    padding: 110px 0;
    background: var(--white);
}

.ve-metricova-box {
    padding: 65px;
    background: var(--dark);
    color: var(--white);
}

.ve-metricova-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 55px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.ve-metricova-heading > span {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--orange);
}

.ve-metricova-heading h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 68px);
    line-height: .95;
    letter-spacing: -3px;
}

.ve-metricova-heading h2 strong {
    display: block;
    color: var(--orange);
}

.ve-metricova-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.ve-metricova-grid > div > span {
    color: var(--teal);
    font-size: 10px;
}

.ve-metricova-grid h3 {
    margin: 35px 0 12px;
    font-size: 19px;
}

.ve-metricova-grid p {
    margin: 0;
    color: rgba(255,255,255,.6);
    font-size: 13px;
    line-height: 1.75;
}



/* ==================================================
   AEO
================================================== */

.ve-aeo {
    padding: 125px 0;
    background: var(--offwhite);
}

.ve-aeo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ve-answer {
    position: relative;
    min-height: 300px;
    padding: 35px;
    background: var(--white);
    border: 1px solid var(--line);
    transition: .3s;
}

.ve-answer:hover {
    transform: translateY(-6px);
    border-color: var(--teal);
}

.ve-answer > span {
    font-size: 10px;
    font-weight: 800;
    color: var(--orange);
}

.ve-answer h3 {
    margin: 45px 0 15px;
    max-width: 470px;
    font-size: 22px;
    line-height: 1.3;
}

.ve-answer p {
    margin-bottom: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}



/* ==================================================
   FAQ
================================================== */

.ve-faq {
    padding: 120px 0;
    background: var(--white);
}

.ve-faq-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 100px;
}

.ve-faq-heading {
    position: sticky;
    top: 30px;
    align-self: start;
}

.ve-faq-heading h2 {
    margin: 18px 0;
    font-size: clamp(40px, 4.5vw, 62px);
    line-height: 1;
    letter-spacing: -3px;
}

.ve-faq-heading h2 span {
    display: block;
    color: var(--teal);
}

.ve-faq-heading p {
    max-width: 400px;
    color: var(--text);
    line-height: 1.8;
}

.ve-faq-list details {
    border-bottom: 1px solid var(--line);
}

.ve-faq-list details:first-child {
    border-top: 1px solid var(--line);
}

.ve-faq-list summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 12px;
    padding: 25px 42px 25px 0;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
}

.ve-faq-list summary::-webkit-details-marker {
    display: none;
}

.ve-faq-list summary::after {
    content: "+";
    position: absolute;
    right: 5px;
    top: 22px;
    font-size: 24px;
    color: var(--orange);
}

.ve-faq-list details[open] summary::after {
    content: "−";
}

.ve-faq-list summary span {
    color: var(--teal);
    font-size: 10px;
    padding-top: 6px;
}

.ve-faq-list details p {
    margin: 0;
    padding: 0 35px 28px 62px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.85;
}



/* ==================================================
   FINAL CTA
================================================== */

.ve-final {
    background: var(--orange);
    padding: 120px 0 45px;
}

.ve-final-inner {
    text-align: center;
}

.ve-final-small {
    display: inline-block;
    margin-bottom: 25px;
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 900;
    color: var(--dark);
}

.ve-final h2 {
    max-width: 1000px;
    margin: 0 auto 27px;
    font-size: clamp(55px, 8vw, 110px);
    line-height: .83;
    letter-spacing: -6px;
    color: var(--dark);
}

.ve-final h2 span {
    display: block;
    color: var(--white);
}

.ve-final p {
    max-width: 570px;
    margin: 0 auto 32px;
    color: rgba(34,66,72,.8);
    line-height: 1.8;
}

.ve-final-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    min-height: 60px;
    padding: 0 30px;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: .3s;
}

.ve-final-button span {
    font-size: 22px;
    transition: .3s;
}

.ve-final-button:hover {
    background: var(--blue);
    transform: translateY(-4px);
}

.ve-final-button:hover span {
    transform: translate(3px, -3px);
}

.ve-final-meta {
    margin-top: 100px;
    padding-top: 20px;
    border-top: 1px solid rgba(34,66,72,.25);
    text-align: left;
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 700;
}



/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .ve-hero-grid,
    .ve-intro-grid,
    .ve-transform-grid,
    .ve-reels-grid,
    .ve-local-grid,
    .ve-why-grid,
    .ve-faq-grid {
        grid-template-columns: 1fr;
    }

    .ve-hero-grid {
        gap: 60px;
    }

    .ve-editor {
        max-width: 650px;
    }

    .ve-intro-grid,
    .ve-transform-grid,
    .ve-local-grid,
    .ve-why-grid,
    .ve-faq-grid {
        gap: 55px;
    }

    .ve-phone-stack {
        max-width: 570px;
    }

    .ve-elements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ve-element-large {
        grid-column: auto;
    }

    .ve-usecases-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ve-usecase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ve-process-line {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 20px;
        border-top: none;
    }

    .ve-process-step {
        border-top: 2px solid var(--dark);
    }

    .ve-metricova-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ve-faq-heading {
        position: static;
    }
}



/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {

    .ve-container {
        width: min(100% - 30px, 1180px);
    }

    .ve-hero {
        padding-top: 75px;
    }

    .ve-hero h1 {
        font-size: 46px;
        letter-spacing: -2.5px;
    }

    .ve-hero-text {
        font-size: 15px;
    }

    .ve-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .ve-btn-primary,
    .ve-btn-outline {
        width: 100%;
    }

    .ve-editor {
        transform: none;
    }

    .ve-preview {
        height: 250px;
    }

    .ve-marquee {
        margin-top: 65px;
    }

    .ve-intro,
    .ve-services,
    .ve-transform,
    .ve-reels,
    .ve-elements,
    .ve-usecases,
    .ve-local,
    .ve-process,
    .ve-why,
    .ve-metricova,
    .ve-aeo,
    .ve-faq {
        padding: 80px 0;
    }

    .ve-intro h2,
    .ve-section-heading h2,
    .ve-transform h2,
    .ve-reels h2,
    .ve-local h2,
    .ve-process h2,
    .ve-why h2,
    .ve-usecases-top h2,
    .ve-faq-heading h2 {
        font-size: 41px;
        letter-spacing: -2px;
    }

    .ve-service-row {
        grid-template-columns: 40px 1fr;
        gap: 12px;
        padding: 28px 0;
    }

    .ve-service-icon {
        display: none;
    }

    .ve-service-main h3 {
        font-size: 21px;
    }

    .ve-transform-board {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 22px;
    }

    .ve-transform-arrow {
        transform: rotate(90deg);
    }

    .ve-phone-stack {
        min-height: 520px;
    }

    .ve-phone {
        width: 180px;
        height: 370px;
    }

    .ve-phone-screen {
        height: 270px;
    }

    .ve-phone-one {
        left: 0;
    }

    .ve-phone-two {
        left: 90px;
    }

    .ve-phone-three {
        left: 175px;
    }

    .ve-phone-screen strong {
        font-size: 42px;
    }

    .ve-reels-features {
        grid-template-columns: 1fr;
    }

    .ve-elements-grid,
    .ve-usecase-grid,
    .ve-aeo-grid,
    .ve-metricova-grid {
        grid-template-columns: 1fr;
    }

    .ve-usecase {
        min-height: auto;
    }

    .ve-usecase h3 {
        margin-top: 30px;
    }

    .ve-mountain-art {
        min-height: 420px;
    }

    .ve-process-line {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .ve-process-step {
        padding-left: 0;
    }

    .ve-metricova-box {
        padding: 35px 22px;
    }

    .ve-metricova-heading {
        display: block;
    }

    .ve-metricova-heading h2 {
        margin-top: 25px;
        font-size: 45px;
    }

    .ve-answer {
        min-height: auto;
    }

    .ve-answer h3 {
        margin-top: 30px;
    }

    .ve-faq-list summary {
        grid-template-columns: 35px 1fr;
        padding-right: 35px;
    }

    .ve-faq-list details p {
        padding-left: 47px;
    }

    .ve-final {
        padding-top: 85px;
    }

    .ve-final h2 {
        font-size: 55px;
        letter-spacing: -4px;
    }

    .ve-final-meta {
        margin-top: 70px;
        line-height: 1.6;
    }
}/* End custom CSS */