/* SMY Solutions - Realtor Website Service Design System */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;700&display=swap');

:root {
    /* Primary Palette */
    --color-cyan: #1dace5;
    --color-blue: #4095d1;
    --color-steel-blue: #4586be;
    --color-white: #ffffff;
    --color-dark-blue: #0a2540;

    /* Secondary Palette */
    --color-gold: #c2912e;
    --color-yellow: #fac723;
    --color-cream: #fffbcc;
    --color-light-gold: #eed688;

    /* Semantic Colors */
    --bg-primary: var(--color-white);
    --bg-secondary: #f8fafc;
    --text-primary: var(--color-dark-blue);
    --text-secondary: #4b5563;
    --accent: var(--color-gold);
    --cta-bg: var(--color-yellow);
    --cta-hover: var(--color-gold);

    /* Typography */
    --font-heading: 'Perpetua', serif;
    --font-body: 'Raleway', sans-serif;
}

/* Fallback for Perpetua if not installed */
@font-face {
    font-family: 'Perpetua';
    src: local('Perpetua'), local('Baskerville'), serif;
}

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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
    position: relative;
}

.flex {
    display: flex;
    gap: 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.text-center {
    text-align: center;
}

.bg-secondary {
    background-color: var(--bg-secondary);
}

/* Smooth section blending — testimonials uses gradient instead of flat bg */
#testimonials {
    background: linear-gradient(to bottom, #ffffff, var(--bg-secondary) 20%, var(--bg-secondary) 80%, #ffffff);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--cta-bg);
    color: var(--color-dark-blue);
    box-shadow: 0 10px 20px rgba(250, 199, 35, 0.2);
}

.btn-primary:hover {
    background-color: var(--cta-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(194, 145, 46, 0.3);
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
}

.btn-outline:hover {
    background-color: var(--color-blue);
    color: white;
}

/* Design Patterns */
.bar-accent {
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-blue));
    margin-bottom: 1.5rem;
    animation: expandBar 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes expandBar {
    from {
        width: 0;
    }

    to {
        width: 60px;
    }
}

.bar-center {
    margin-left: auto;
    margin-right: auto;
}

.circle-frame {
    border-radius: 50%;
    overflow: hidden;
    border: 12px solid var(--color-white);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    width: 400px;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.circle-frame:hover {
    transform: scale(1.02) rotate(2deg);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.nav-compact {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 860px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0.6rem 0;
    box-shadow: 0 10px 28px rgba(4, 23, 62, 0.12);
}

nav.nav-compact .container {
    padding-left: 1rem;
    padding-right: 1rem;
}

nav.nav-compact .logo img {
    height: 32px !important;
}

nav.nav-compact .nav-links {
    gap: 1.8rem;
}

nav.nav-compact .nav-links a {
    font-size: 0.88rem;
}

nav.nav-compact .btn.btn-primary {
    padding: 0.48rem 1rem !important;
    font-size: 0.74rem !important;
    border-radius: 999px;
}

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

.logo {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-dark-blue);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--color-cyan);
}

/* Hero Section */
.hero {
    background: #f8faff;
    padding: 180px 0 120px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(248, 250, 255, 0.76) 0%, rgba(248, 250, 255, 0.48) 48%, rgba(248, 250, 255, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Smooth hero → features blend */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(29, 172, 229, 0.06));
    pointer-events: none;
    z-index: 0;
}

/* Infinite Grid Background Animation */
.infinite-grid-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.infinite-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
}

.orb-orange {
    right: -20%; top: -20%; width: 40%; height: 40%;
    background-color: rgba(249, 115, 22, 0.4);
}
.orb-primary {
    right: 10%; top: -10%; width: 20%; height: 20%;
    background-color: rgba(29, 172, 229, 0.3);
}
.orb-blue {
    left: -10%; bottom: -20%; width: 40%; height: 40%;
    background-color: rgba(59, 130, 246, 0.4);
}

.infinite-grid-base, .infinite-grid-interactive {
    position: absolute;
    inset: -200px;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(0,0,0,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.05) 1px, transparent 1px);
    z-index: 2;
    will-change: transform;
}

.infinite-grid-base {
    opacity: 0.5;
}

.infinite-grid-interactive {
    opacity: 1;
    background-image: 
        linear-gradient(to right, rgba(0,0,0,0.15) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.15) 1px, transparent 1px);
    -webkit-mask-image: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), black, transparent);
    mask-image: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), black, transparent);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-flex {
    align-items: center;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    padding: 1rem 2rem 1rem 0;
    box-shadow: none;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
}

.hero-image::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: var(--color-cyan);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
    top: -20px;
}

.hero-mockup-wrapper {
    position: relative;
    width: min(100%, 700px);
    border-radius: 24px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 30px 60px rgba(4, 23, 62, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: heroFloat 7s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1200px;
}

.hero-mockup-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
}

.hero-mockup-wrapper:hover .hero-mockup-img {
    transform: translateZ(25px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: var(--color-dark-blue);
}

.hero h1 span {
    color: var(--color-blue);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

/* Stats / Trust */
.trust-bar {
    padding: 2rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-top: 4rem;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.stat-item h4 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
    color: var(--color-blue);
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}

.stat-source {
    font-size: 0.72rem;
    color: #9ca3af;
    display: block;
    font-style: italic;
}

/* Features */
#features {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(125% 125% at 50% 90%, #ffffff 40%, #1dace5 100%);
    padding-top: 120px;
}

/* Smooth top blend — hero into features */
#features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to bottom, #f8faff 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle secondary glow from top for depth */
#features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(80% 60% at 50% 0%, rgba(64, 149, 209, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

#features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 4rem;
}

.feature-card {
    padding: 4rem 3rem;
    background: white;
    border-radius: 24px;
    border: 1px solid #edf2f7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card,
.step,
.tier-card,
.ownership-badge,
.hero-bucket-chip,
details,
.table-wrapper,
.testimonial-arrow,
.footer-socials a,
.btn-outline {
    --x: 0;
    --y: 0;
    --xp: 0.5;
    --yp: 0.5;
    --border: 2;
    --radius: 24;
    --size: 300;
    --base: 199;
    /* SMY Cyan hue */
    --spread: 25;
    /* Drift range toward steel-blue */
    --border-size: calc(var(--border) * 1px);
    --spotlight-size: calc(var(--size) * 1px);
    --hue: calc(var(--base) + (var(--xp) * var(--spread)));
}

/* Keep pseudo border layers bounded and interactive-safe */
.hero-bucket-chip,
details,
.table-wrapper,
.testimonial-arrow,
.footer-socials a,
.btn-outline {
    position: relative;
}

/* Shape-specific radius overrides */
.ownership-badge {
    --radius: 14;
    --size: 220;
}

.hero-bucket-chip {
    --radius: 999;
    --size: 220;
}

details {
    --radius: 12;
    --size: 260;
}

.table-wrapper {
    --radius: 20;
    --size: 320;
}

.testimonial-arrow,
.footer-socials a,
.btn-outline {
    --radius: 999;
    --size: 180;
}

.feature-card::before,
.feature-card::after,
.step::before,
.step::after,
.tier-card::before,
.tier-card::after,
.ownership-badge::before,
.ownership-badge::after,
.hero-bucket-chip::before,
.hero-bucket-chip::after,
details::before,
details::after,
.table-wrapper::before,
.table-wrapper::after,
.testimonial-arrow::before,
.testimonial-arrow::after,
.footer-socials a::before,
.footer-socials a::after,
.btn-outline::before,
.btn-outline::after {
    pointer-events: none;
    content: "";
    position: absolute;
    inset: calc(var(--border-size) * -1);
    border: var(--border-size) solid transparent;
    border-radius: calc(var(--radius) * 1px);
    background-attachment: fixed;
    background-size:
        calc(100% + (2 * var(--border-size))) calc(100% + (2 * var(--border-size)));
    background-repeat: no-repeat;
    background-position: 50% 50%;
    /* Clip gradient to border area only */
    -webkit-mask:
        linear-gradient(transparent, transparent),
        linear-gradient(white, white);
    -webkit-mask-clip: padding-box, border-box;
    -webkit-mask-composite: destination-in;
    mask:
        linear-gradient(transparent, transparent),
        linear-gradient(white, white);
    mask-clip: padding-box, border-box;
    mask-composite: intersect;
}

/* Cyan glow — follows cursor */
.feature-card::before,
.step::before,
.tier-card::before,
.ownership-badge::before,
.hero-bucket-chip::before,
details::before,
.table-wrapper::before,
.testimonial-arrow::before,
.footer-socials a::before,
.btn-outline::before {
    background-image: radial-gradient(calc(var(--spotlight-size) * 0.75) calc(var(--spotlight-size) * 0.75) at calc(var(--x) * 1px) calc(var(--y) * 1px),
            hsl(var(--hue) 76% 52% / 1),
            transparent 100%);
    filter: brightness(1.8);
}

/* Gold accent glow — tighter, warmer highlight */
.feature-card::after,
.step::after,
.tier-card::after,
.ownership-badge::after,
.hero-bucket-chip::after,
details::after,
.table-wrapper::after,
.testimonial-arrow::after,
.footer-socials a::after,
.btn-outline::after {
    background-image: radial-gradient(calc(var(--spotlight-size) * 0.45) calc(var(--spotlight-size) * 0.45) at calc(var(--x) * 1px) calc(var(--y) * 1px),
            hsl(36 85% 62% / 0.85),
            transparent 100%);
}

.feature-card:hover {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(29, 172, 229, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Ownership Section */
.ownership {
    background: var(--color-dark-blue);
    color: white;
    border-radius: 40px;
    margin: 0 2rem;
    overflow: hidden;
    position: relative;
}

.ownership-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.8;
}

.ownership-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-dark-blue);
    opacity: 0.85;
    z-index: 1;
}

/* Mouse-reactive glow layer inside dark section */
.ownership::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 60% at calc(var(--ox, 30%)) calc(var(--oy, 50%)),
            rgba(29, 172, 229, 0.18) 0%,
            rgba(194, 145, 46, 0.06) 40%,
            transparent 70%);
    pointer-events: none;
    transition: background 0.1s ease;
    z-index: 0;
}

.ownership>.container {
    position: relative;
    z-index: 1;
}

.ownership h2 {
    color: white;
}

.ownership .bar-accent {
    background: var(--color-yellow);
}

.ownership p {
    color: #cbd5e1;
}

.ownership-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.ownership-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    overflow: visible;

    /* Spotlight variables — same system as cards */
    --x: 0;
    --y: 0;
    --xp: 0.5;
    --yp: 0.5;
    --border: 1;
    --radius: 12;
    --size: 220;
    --base: 199;
    --spread: 25;
    --border-size: calc(var(--border) * 1px);
    --spotlight-size: calc(var(--size) * 1px);
    --hue: calc(var(--base) + (var(--xp) * var(--spread)));
}

.ownership-badge::before,
.ownership-badge::after {
    pointer-events: none;
    content: "";
    position: absolute;
    inset: calc(var(--border-size) * -1);
    border: var(--border-size) solid transparent;
    border-radius: calc(var(--radius) * 1px);
    background-attachment: fixed;
    background-size: calc(100% + (2 * var(--border-size))) calc(100% + (2 * var(--border-size)));
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
    -webkit-mask-clip: padding-box, border-box;
    -webkit-mask-composite: destination-in;
    mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
    mask-clip: padding-box, border-box;
    mask-composite: intersect;
}

.ownership-badge::before {
    background-image: radial-gradient(calc(var(--spotlight-size) * 0.75) calc(var(--spotlight-size) * 0.75) at calc(var(--x) * 1px) calc(var(--y) * 1px),
            hsl(var(--hue) 76% 65% / 1), transparent 100%);
    filter: brightness(1.6);
}

.ownership-badge::after {
    background-image: radial-gradient(calc(var(--spotlight-size) * 0.4) calc(var(--spotlight-size) * 0.4) at calc(var(--x) * 1px) calc(var(--y) * 1px),
            hsl(36 90% 68% / 0.9), transparent 100%);
}

.ownership-badge i {
    color: var(--color-yellow);
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

/* Pricing */
.pricing {
    background: linear-gradient(to bottom, #ffffff, var(--bg-secondary) 30%, var(--bg-secondary) 70%, #ffffff);
}

.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    margin-top: 4rem;
    align-items: end;
}

.tier-card {
    background: white;
    padding: 5rem 3.5rem;
    border-radius: 32px;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.tier-card.featured {
    padding: 6rem 3.5rem;
    border: 2px solid var(--color-blue);
    box-shadow: 0 40px 80px rgba(64, 149, 209, 0.1);
}

.tier-card h3 {
    font-size: 2rem;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    margin: 2rem 0;
    font-family: var(--font-heading);
}

.price span {
    font-size: 1.2rem;
    font-family: var(--font-body);
    opacity: 0.6;
}

.tier-features {
    list-style: none;
    margin: 3rem 0;
}

.tier-features li {
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: flex-start;
}

.tier-features li i {
    color: var(--color-cyan);
    margin-right: 15px;
    margin-top: 5px;
}

/* Top Bar */
.topbar {
    background: var(--color-dark-blue);
    color: white;
    padding: 0.6rem 0;
    font-size: 0.85rem;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
}

.topbar a {
    color: var(--color-cyan);
    text-decoration: none;
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.step {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    position: relative;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.step-number {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.step h3 {
    color: var(--color-dark-blue);
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.step p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials — Animated Slider */
.testimonial-slider-wrapper {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

/* Avatar area with gradient glow */
.testimonial-avatar-area {
    position: relative;
    height: 150px;
    margin-bottom: 0;
}

.testimonial-glow {
    pointer-events: none;
    position: absolute;
    left: 50%;
    top: 0;
    width: 480px;
    height: 480px;
    transform: translateX(-50%);
}

.testimonial-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle at center,
            rgba(29, 172, 229, 0.25) 0%,
            rgba(64, 149, 209, 0.05) 25%,
            transparent 75%);
}

.testimonial-avatar-track {
    height: 150px;
    -webkit-mask-image: linear-gradient(0deg, transparent, #fff 20%, #fff);
    mask-image: linear-gradient(0deg, transparent, #fff 20%, #fff);
    position: relative;
}

.testimonial-avatar-item {
    position: absolute;
    inset: 0;
    z-index: -1;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 30px;
    opacity: 0;
    transform: rotate(60deg);
    transition: opacity 0.7s cubic-bezier(0.68, -0.3, 0.32, 1),
        transform 0.7s cubic-bezier(0.68, -0.3, 0.32, 1);
    pointer-events: none;
}

.testimonial-avatar-item.active {
    opacity: 1;
    transform: rotate(0deg);
    z-index: 1;
}

.testimonial-avatar-item.leaving {
    opacity: 0;
    transform: rotate(-60deg);
}

.testimonial-avatar-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 24px rgba(10, 37, 64, 0.18);
}

/* Quote area */
.testimonial-quote-area {
    margin-bottom: 2.25rem;
    transition: all 0.3s ease-in-out 0.3s;
}

.testimonial-quote-track {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 80px;
}

.testimonial-quote-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.5s ease-in-out 0.2s,
        transform 0.5s ease-in-out 0.2s;
    pointer-events: none;
}

.testimonial-quote-item.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-quote-item.leaving {
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.3s ease-out 0.3s,
        transform 0.3s ease-out 0.3s;
}

.testimonial-quote-text {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    line-height: 1.4;
    font-family: var(--font-heading);
}

.testimonial-quote-text::before {
    content: '\201C';
    color: var(--color-cyan);
}

.testimonial-quote-text::after {
    content: '\201D';
    color: var(--color-cyan);
}

/* Inline arrow navigation */
.testimonial-inline-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.testimonial-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(29, 172, 229, 0.2);
    background: white;
    color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.testimonial-arrow:hover {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(29, 172, 229, 0.25);
    transform: scale(1.08);
}

.testimonial-arrow:active {
    transform: scale(0.95);
}

.testimonial-arrow:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(29, 172, 229, 0.35);
}

.testimonial-nav-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark-blue);
    font-family: var(--font-body);
    white-space: nowrap;
    min-width: 200px;
    text-align: center;
    transition: opacity 0.3s ease;
}

.testimonial-nav-label .testimonial-label-sep {
    color: var(--color-cyan);
    opacity: 0.5;
    margin: 0 0.4rem;
}

/* Dot indicators */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.25rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(29, 172, 229, 0.18);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-dot:hover {
    background: rgba(29, 172, 229, 0.4);
    transform: scale(1.3);
}

.testimonial-dot.active {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(29, 172, 229, 0.3);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: left;
}

details {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid #edf2f7;
}

summary {
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-blue);
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    color: var(--text-secondary);
}

/* Comparison Table */
.table-wrapper {
    overflow-x: auto;
    margin-top: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.table-wrapper::-webkit-scrollbar {
    display: none;
}

.table-disclaimer {
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 1.5rem;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    text-align: left;
    min-width: 800px;
}

.comparison-table th {
    background: var(--color-dark-blue);
    color: white;
    padding: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #edf2f7;
    font-size: 0.95rem;
}

.highlight-row {
    background: #f0fff4 !important;
    /* Light green */
}

.highlight-row td {
    color: #22543d;
    font-weight: 600;
}

.highlight-row td:first-child {
    color: var(--color-cyan);
    font-weight: 800;
}

.status-yes {
    color: #2f855a;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.status-no {
    color: #c53030;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.status-partial {
    color: #b7791f;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.status-yes i,
.status-no i,
.status-partial i {
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* Footer */
.hover-footer {
    position: relative;
    margin: 2rem;
    border-radius: 28px;
    overflow: hidden;
    background: #04132a;
    color: white;
}

.footer-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(130% 120% at 50% 8%, rgba(4, 19, 42, 0.55) 35%, rgba(64, 149, 209, 0.14) 100%);
    z-index: 0;
}

.footer-shell {
    position: relative;
    z-index: 1;
    padding: 4.5rem 2rem 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo-img {
    height: 52px;
    width: auto;
    margin-bottom: 1.2rem;
}

.footer-tagline {
    color: #b6c5da;
    max-width: 350px;
    margin-bottom: 1.3rem;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--color-dark-blue);
    font-weight: 700;
    background: var(--color-yellow);
    padding: 0.75rem 1rem;
    border-radius: 999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(194, 145, 46, 0.38);
}

.footer-links h4 {
    color: #f8fbff;
    font-family: var(--font-body);
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.7rem;
    color: #9ab0cb;
}

.footer-links a {
    color: #9ab0cb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-cyan);
}

.footer-contact-list li i {
    width: 18px;
    color: var(--color-cyan);
    margin-right: 0.35rem;
}

.footer-socials {
    margin-top: 1rem;
    display: flex;
    gap: 0.8rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(64, 149, 209, 0.35);
    color: #d6e5f7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-socials a:hover {
    color: var(--color-dark-blue);
    background: var(--color-cyan);
    border-color: var(--color-cyan);
}

.footer-signature-wrap {
    height: 180px;
    margin-top: -1rem;
    margin-bottom: -0.3rem;
    opacity: 0.95;
}

#footerSignature {
    width: 100%;
    height: 100%;
}

.smy-text {
    font-family: 'Poppins', sans-serif;
    font-size: 210px;
    font-weight: 800;
    letter-spacing: 8px;
}

.smy-text-outline {
    fill: transparent;
    stroke: rgba(148, 163, 184, 0.22);
    stroke-width: 1.4;
}

.smy-text-base {
    fill: transparent;
    stroke: url(#smyBaseStroke);
    stroke-width: 1.4;
    stroke-dasharray: 1200;
    animation: smy-stroke-draw 4.5s ease-in-out infinite alternate;
}

.smy-text-reveal {
    fill: transparent;
    stroke: url(#smyRevealGradient);
    stroke-width: 1.4;
}

@keyframes smy-stroke-draw {
    0% {
        stroke-dashoffset: 1200;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.copyright {
    padding-top: 1.8rem;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
    text-align: center;
    color: #8ca2be;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

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

    .ownership {
        margin: 0 1rem;
    }
}

@media (max-width: 768px) {
    .hover-footer {
        margin: 1rem;
        border-radius: 20px;
    }

    .footer-shell {
        padding: 3rem 1.1rem 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-signature-wrap {
        height: 110px;
    }

    .smy-text {
        font-size: 130px;
        letter-spacing: 4px;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 4rem;
        padding: 1.2rem 1rem 1rem;
    }

    .hero-bucket {
        width: 100%;
        max-width: 460px;
    }

    .hero-bucket-chip {
        min-width: 220px;
        padding: 0.62rem 0.7rem;
    }

    .chip-title {
        font-size: 0.78rem;
    }

    .chip-desc {
        font-size: 0.68rem;
    }

    .circle-frame {
        width: 300px;
        height: 300px;
    }

    .nav-links {
        display: none;
    }

    nav.nav-compact {
        width: 100%;
        left: 0;
        top: 0;
        transform: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .tier-card.featured {
        transform: none;
    }

    .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .ownership-badges {
        gap: 0.5rem;
    }

    .timeline {
        grid-template-columns: 1fr;
    }
}

/* Additional responsive hardening */
img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero p {
        font-size: 1.08rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .tier-card,
    .tier-card.featured {
        padding: 3.25rem 2rem;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }

    nav {
        padding: 1rem 0;
    }

    .nav-links {
        gap: 1.2rem;
    }

    .nav-links a {
        font-size: 0.86rem;
    }

    .hero {
        padding: 150px 0 90px;
    }

    .hero-flex {
        flex-direction: column;
        gap: 2.25rem;
    }

    .hero-content {
        width: 100%;
        margin-bottom: 0;
    }

    .hero h1 {
        font-size: 2.9rem;
    }

    .hero-btns {
        flex-wrap: wrap;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

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

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .ownership .flex {
        flex-direction: column;
        gap: 2rem !important;
    }

    .timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-quote-text {
        font-size: 1.35rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .topbar {
        font-size: 0.75rem;
    }

    .topbar-inner {
        justify-content: center;
    }

    .topbar-inner a {
        display: none;
    }

    .section {
        padding: 68px 0;
    }

    .hero {
        padding: 132px 0 72px;
    }

    .hero h1 {
        font-size: 2.35rem;
        line-height: 1.14;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .trust-bar {
        margin-top: 2rem;
        padding: 1.2rem 0;
    }

    .stats-grid {
        text-align: center;
    }

    .hero-bucket {
        max-width: 420px;
    }

    .comparison-table {
        min-width: 680px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.85rem 0.8rem;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .testimonial-inline-nav {
        gap: 0.75rem;
    }

    .testimonial-nav-label {
        font-size: 0.78rem;
        min-width: 145px;
    }

    .price {
        font-size: 2.7rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-content {
        border-radius: 16px;
    }

    .hero-bucket {
        max-width: 360px;
    }

    .hero-bucket-chip {
        min-width: 190px;
        max-width: 88%;
        padding: 0.52rem 0.58rem;
    }

    .chip-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .chip-title {
        font-size: 0.72rem;
    }

    .chip-desc {
        font-size: 0.64rem;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .step,
    .tier-card,
    .tier-card.featured {
        padding: 1.4rem 1rem;
    }

    .testimonial-quote-text {
        font-size: 1.12rem;
    }

    .footer-signature-wrap {
        display: none;
    }

    .copyright {
        font-size: 0.78rem;
    }
}

/* Remove hover pull/lift effect site-wide */
.btn-primary:hover,
.circle-frame:hover,
.feature-card:hover,
.step:hover,
.testimonial-arrow:hover,
.testimonial-dot:hover,
.footer-cta:hover {
    transform: none !important;
    box-shadow: none !important;
}

   BLOG GRID & CARDS
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
}

/* Center 1 post */
.blog-grid.blog-grid-center-1 {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Center 2 posts */
.blog-grid.blog-grid-center-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-card {
    background: white;
    border-radius: 24px;
    border: 1px solid #edf2f7;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    animation: blogCardFadeIn 0.5s ease both;

    /* Spotlight variables — same system as other cards */
    --x: 0;
    --y: 0;
    --xp: 0.5;
    --yp: 0.5;
    --border: 2;
    --radius: 24;
    --size: 300;
    --base: 199;
    --spread: 25;
    --border-size: calc(var(--border) * 1px);
    --spotlight-size: calc(var(--size) * 1px);
    --hue: calc(var(--base) + (var(--xp) * var(--spread)));
}

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

/* Spotlight border pseudo-elements for blog cards */
.blog-card::before,
.blog-card::after {
    pointer-events: none;
    content: "";
    position: absolute;
    inset: calc(var(--border-size) * -1);
    border: var(--border-size) solid transparent;
    border-radius: calc(var(--radius) * 1px);
    background-attachment: fixed;
    background-size: calc(100% + (2 * var(--border-size))) calc(100% + (2 * var(--border-size)));
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-mask:
        linear-gradient(transparent, transparent),
        linear-gradient(white, white);
    -webkit-mask-clip: padding-box, border-box;
    -webkit-mask-composite: destination-in;
    mask:
        linear-gradient(transparent, transparent),
        linear-gradient(white, white);
    mask-clip: padding-box, border-box;
    mask-composite: intersect;
}

.blog-card::before {
    background-image: radial-gradient(calc(var(--spotlight-size) * 0.75) calc(var(--spotlight-size) * 0.75) at calc(var(--x) * 1px) calc(var(--y) * 1px),
            hsl(var(--hue) 76% 52% / 1),
            transparent 100%);
    filter: brightness(1.8);
}

.blog-card::after {
    background-image: radial-gradient(calc(var(--spotlight-size) * 0.45) calc(var(--spotlight-size) * 0.45) at calc(var(--x) * 1px) calc(var(--y) * 1px),
            hsl(36 85% 62% / 0.85),
            transparent 100%);
}

.blog-card:hover {
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

/* Blog card image */
.blog-card-img-link {
    display: block;
    text-decoration: none;
}

.blog-card-img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.blog-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 37, 64, 0.25) 100%);
    transition: opacity 0.4s ease;
    opacity: 0;
}

.blog-card:hover .blog-card-img-overlay {
    opacity: 1;
}

/* Blog card content */
.blog-card-content {
    padding: 1.5rem 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.blog-cat-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(29, 172, 229, 0.08);
    color: var(--color-blue);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-meta {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-meta i {
    color: var(--color-cyan);
    font-size: 0.78rem;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.6rem;
    color: var(--color-dark-blue);
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--color-blue);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--color-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: gap 0.3s ease, color 0.3s;
}

.blog-read-more:hover {
    gap: 0.75rem;
    color: var(--color-cyan);
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

/* Blog empty message */
.blog-empty-msg {
    grid-column: 1 / -1;
    color: var(--text-secondary);
    text-align: center;
    padding: 3rem 0;
}

   BLOG SKELETON LOADING
.blog-skeleton {
    border-radius: 24px;
    border: 1px solid #edf2f7;
    overflow: hidden;
    background: white;
}

.skeleton-img {
    width: 100%;
    height: 220px;
    background: linear-gradient(110deg, #f0f4f8 25%, #e8eef3 37%, #f0f4f8 63%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.4s ease-in-out infinite;
}

.skeleton-content {
    padding: 1.5rem;
}

.skeleton-line {
    height: 14px;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    background: linear-gradient(110deg, #f0f4f8 25%, #e8eef3 37%, #f0f4f8 63%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.4s ease-in-out infinite;
}

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

   BLOG PAGINATION
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.blog-page-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 2px solid #edf2f7;
    background: white;
    color: var(--color-dark-blue);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
}

.blog-page-btn:hover:not(.disabled):not(.active) {
    border-color: var(--color-blue);
    color: var(--color-blue);
    background: rgba(29, 172, 229, 0.04);
}

.blog-page-btn.active {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(29, 172, 229, 0.3);
}

.blog-page-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.blog-page-prev,
.blog-page-next {
    border-radius: 50%;
    font-size: 0.8rem;
}

   BLOG RESPONSIVE
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid.blog-grid-center-1 {
        grid-template-columns: 1fr;
    }
    .blog-grid.blog-grid-center-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid,
    .blog-grid.blog-grid-center-2 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .blog-grid.blog-grid-center-1 {
        max-width: 100%;
    }
    .blog-card-img {
        height: 180px;
    }
    .blog-card-content {
        padding: 1.2rem 1.2rem 1.5rem;
    }
    .blog-page-btn {
        width: 36px;
        height: 36px;
        font-size: 0.82rem;
    }
}