@font-face {
    font-family: "Proxima Nova";
    src: url('../assets/fonts/ProximaNova-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Proxima Nova";
    src: url('../assets/fonts/ProximaNova-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Proxima Nova";
    src: url('../assets/fonts/ProximaNova-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
    margin: 0;
    font-family: "Proxima Nova", sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    background: var(--bg);
    /* Offset for fixed header */
    padding-top: 74px;
}

.hero-copy{
    padding: 40px;
}

:root {
    --primary: #f24a1d;
    --secondary: #f7b500;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --border: #e2e8f0;
    --shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    --radius: 16px;
}

.img-cover {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0px 20px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    text-decoration: none;
    line-height: 1;
}

.brand-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-dark);
    opacity: 0.9;
}

.brand-logo { height: 46px; width: auto; }

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex: 1;
    min-width: 0;
    flex-wrap: nowrap;
}

.site-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.site-nav a::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    flex: 0 0 auto;
}

.site-nav a:hover { color: var(--primary); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.btn-language {
    background: transparent;
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.btn-language:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.lang-current { font-weight: 900; }
.lang-separator { opacity: 0.3; }
.lang-other { opacity: 0.6; }

/* Mobile hamburger (hidden on desktop) */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-toggle-icon {
    position: relative;
    width: 18px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
}

.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after { top: 6px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    user-select: none;
}

.btn-primary {
    background: var(--secondary);
    color: #111827;
    font-size: 16px;
    border: 2px solid rgba(17, 24, 39, 0.12);
    box-shadow: 0 12px 24px rgba(128, 128, 128, 0.4);
}

.btn-primary:hover { filter: brightness(0.98); }

.btn-secondary {
    background: #fff;
    color: var(--text-dark);
    border-color: var(--border);
}

.btn-large { padding: 14px 80px; font-size: 48px; }

/* Section primitives */
.hero,
.section {
    min-height: 50vh;
}

@supports (height: 50svh) {
    .hero,
    .section {
        min-height: 50svh;
    }
}

.section { padding: clamp(18px, 5vh, 54px) 20px; }

.section-heading {
    text-align: center;
    font-size: clamp(22px, 3.2vw, 48px);
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}

.heading-dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--primary);
    vertical-align: middle;
    margin: 0 10px;
}

.heading-dot-white {
    display: inline-block;
    width: 15px;
    height: 15px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: #fff;
    vertical-align: middle;
    margin: 0 10px;
}

.section-lead {
    max-width: 880px;
    margin: 26px auto;
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
}

.section-bar {
    padding: 18px 0;
    text-align: center;
}

.section-bar--primary { background: var(--primary); color: #fff; }

.section-bar--white { 
    background: #fff; 
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
}

.section-bar--pink { 
    background: #fedfd9; 
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
}

.section-bar--white .section-bar-title .heading-dot {
    background: var(--primary);
}

.section-bar-title {
    margin: 0;
    font-size: 48px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-bar-title .title-text {
    flex: 1;
}

.section-bar-title::before,
.section-bar-title::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: #fff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    flex-shrink: 0;
}

.section-bar-title::before {
    left: -30px;
}

.section-bar-title::after {
    right: -30px;
}

.section-bar-title .heading-dot-white {
    flex-shrink: 0;
    align-self: center;
}

/* Hero */
.hero {
    background: #fff;
}

.hero-what-kintone-can-do .hero-grid {
    height: 600px;
    background-image: url('../assets/section1-what-kintone-can-do.png');
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: clamp(16px, 3vw, 32px);
    align-items: center;
    height: 100%;
    background-image: url('../assets/section1.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-grid-price {
    display: grid;
    grid-template-columns: 0.5fr 0.5fr;
    gap: clamp(16px, 3vw, 32px);
    align-items: center;
    height: 100%;
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-grid-resources {
    display: grid;
    grid-template-columns: 0.8fr 0.2fr;
    gap: clamp(16px, 3vw, 32px);
    align-items: center;
    height: 100%;
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-title {
    margin: 0 0 clamp(14px, 2vh, 24px) 0;
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-align: center;
}

.price-hero-title {
    margin: 0 0 clamp(14px, 2vh, 24px) 0;
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-align: left;
}

.resources-hero-title {
    margin: 0 0 clamp(14px, 2vh, 24px) 0;
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-align: left;
}

.hero-line {
    display: block;
    font-size: clamp(48px, 7vw, 100px);
    font-weight: 900;
}

.hero-line-spacer { height: clamp(16px, 3vh, 32px); }

.hero-hello {
    margin-top: clamp(4px, 1vh, 10px);
    font-size: clamp(52px, 7.4vw, 110px);
}

.hero-box {
    display: inline-block;
    border: 5px solid #000;
    padding: clamp(8px, 1.2vh, 16px) clamp(14px, 2.2vw, 28px);
    font-weight: 900;
    font-size: clamp(40px, 5.8vw, 82px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin: clamp(4px, 1vh, 8px) 0;
}

.hero-tag {
    display: inline-block;
    border: 3px solid #000;
    padding: 0 20px;
    font-weight: 900;
    font-size: clamp(24px, 3.5vw, 48px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin: clamp(4px, 1vh, 8px) 0;
}

.hero-highlight {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 0 20px;
    border-radius: 0;
    font-weight: 900;
    font-size: clamp(24px, 12vh, 110px);
    line-height: 1;
    margin: clamp(4px, 1vh, 10px) 0;
}

.final-highlight {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 0 20px;
    border-radius: 0;
    font-weight: 900;
    font-size: clamp(32px, 4.5vw, 48px);
    line-height: 1;
    margin: clamp(4px, 1vh, 10px) 0;
}

.hero-subtitle {
    margin: 0;
    max-width: 580px;
    color: #000;
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 700;
    line-height: 1.4;
}

/* Pricing Hero */
.hero-pricing {
    background-image: url('../assets/pricing-hero-2.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    height: 600px;
}

.hero-resources {
    background: var(--primary);
    background-image: url('../assets/pricing-hero-4.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    height: 600px;
}

.hero-resources-webinars {
    background: var(--primary);
    background-image: url('../assets/pricing-hero-3.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    height: 600px;
}

.pricing-title {
    color: var(--primary);
}

.resources-webinars-title {
    color: #fff;
}

.resources-title {
    color: #fff;
    font-size: clamp(28px, 5vw, 48px);
    margin: 0 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.text-red {
    color: var(--primary);
}

.pricing-subtitle {
    color: #333;
    font-size: clamp(14px, 2vw, 18px);
}

.resources-subtitle {
    color: #fff;
    font-size: clamp(14px, 2vw, 24px);
}

.hero-visual img {
    object-fit: contain;
    object-position: right center;
    max-height: 100%;
    width: auto;
}

/* Videos */
.section-introduction { padding: 0; }

.section-downloadable-resources {
    background: #fff;
    padding: 80px 20px;
}

.downloadable-resources-container {
    max-width: 1000px;
    margin: 0 auto;
}

.resources-section-title {
    text-align: center;
    font-size: clamp(28px, 6vw, 48px);
    color: var(--text-dark);
    margin: 0;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.resources-section-subtitle {
    text-align: center;
    font-size: clamp(14px, 2vw, 24px);
    color: var(--text-dark);
    margin: 0 0 60px 0;
}

.resources-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-items: center;
}

.resources-card {
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

.resources-card-header-section {
    background: var(--primary);
    padding: 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resources-card-header-section-webinars {
    background: var(--primary);
    padding: 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resources-card-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.resources-card-title {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
    flex: 0 0 auto;
}

.resources-card-button-section {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background: #fff;
}

.resources-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    ;
}

.resources-btn:hover {
    background: #f5a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 74, 29, 0.2);
}

.icon-download {
    width: 20px;
    height: 20px;
}

.section-on-demand-webinars {
    background: var(--primary);
    padding: 80px 20px;
}

.on-demand-webinars-container {
    max-width: 1200px;
    margin: 0 auto;
}

.webinars-section-title {
    text-align: center;
    font-size: clamp(28px, 6vw, 48px);
    color: #fff;
    margin: 0;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.heading-dot-white {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
}

.webinars-section-subtitle {
    text-align: center;
    font-size: clamp(14px, 2vw, 24px);
    color: #fff;
    margin: 0 0 60px 0;
}

.webinars-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.webinar-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.webinar-card-image {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.webinar-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.webinar-card-image:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.webinar-card-title {
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.btn-watch {
    display: inline-block;
    padding: 10px 28px;
    background: var(--secondary);
    color: #000;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-watch:hover {
    background: #f5a800;
    transform: translateY(-2px);
}

@media (max-width: 720px) {
    .section-on-demand-webinars {
        padding: 40px 20px;
    }

    .webinars-section-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .webinars-section-subtitle {
        margin-bottom: 40px;
    }

    .webinars-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-downloadable-resources {
        padding: 40px 20px;
    }

    .resources-section-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .resources-section-subtitle {
        margin-bottom: 40px;
    }

    .resources-cards-grid {
        gap: 20px;
    }
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding-top: 26px;
}

.video-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    max-height: 28vh;
    border-radius: var(--radius);
    overflow: hidden;
}

.play-badge {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: rgba(242, 74, 29, 0.9);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
}

.play-badge::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #fff;
}

.video-caption {
    font-family: "Proxima Nova";
    margin: 10px 0 0;
    font-size: 25px;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.section-introduction .container { padding-bottom: 10px; }
.section-introduction .video-caption { color: #fff; }

.section-introduction .container {
    background: var(--primary);
    border-radius: 0 0 0 0;
}

.section-introduction .video-grid {
    padding: 26px 20px 30px;
    background: var(--primary);
    border-radius: 0 0 24px 24px;
}

/* About */
.section-about { 
    background: #fff;
    position: relative;
    display: grid;
    grid-template-columns: 0.6fr 0.4fr;
    gap: clamp(16px, 3vw, 32px);
    align-items: center;
    height: 100%;
    background-image: url('../assets/about-bg.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    overflow: visible;
    padding: 0 20px;
    min-height: 60vh;
}

.section-about .container {
    grid-column: 1;
    z-index: 10;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: flex-start;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    .about-cards .info-card:first-child {
        grid-column: 2;
        justify-self: end;
    }
}

.info-card {
    width: 350px;
    background: #f5d5c8;
    border: none;
    border-radius: 0;
    padding: clamp(20px, 4vh, 20px) clamp(20px, 3vw, 40px);
    box-shadow: none;
    font-size: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
}

.card-title {
    font-size: clamp(16px, 24px, 24px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #000;
}

.card-subtitle {
    font-size: clamp(14px, 18px, 18px);
    font-weight: 700;
    line-height: 1.4;
    color: #000;
}

.info-card--center {
    grid-column: 1 / -1;
    min-height: 120px;
    background: #f5d5c8;
    justify-self: center;
    max-width: calc(50% - 11px);
}

.card-emphasis {
    font-size: clamp(16px, 24px, 24px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #000;
}

.info-card--emphasis { background: #fff7ed; border-color: #fed7aa; }

.about-visual {
    height: min(310px, 36vh);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

/* Problems */
.section-problems { 
    padding: 40px 20px 0px 20px;
    background: var(--primary);
    position: relative;
}

.problems-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.problems-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
}

.problems-grid {
    display: none;
}

.problems-icons {
    display: none;
}

.problem-item { 
    display: none;
}

.problem-icon {
    width: clamp(100px, 20vw, 300px);
    height: clamp(100px, 20vw, 300px);
    margin: 0 auto;
    border-radius: 999px;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
    background: #fff;
}

.problem-text {
    display: none;
}

/* Centralise Customer Section */
.section-centralise-customer { 
    padding: 20px;
    background: var(--primary);
    background-image: linear-gradient(rgba(242, 74, 29, 0.1), rgba(242, 74, 29, 0.1));
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    position: relative;
}

.section-centralise-customer .container {
    padding: 54px 20px;
}

.section-centralise-customer .section-bar-title {
    margin: 0 40px;
}

.centralise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
}

.centralise-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.centralise-icon {
    width: clamp(100px, 20vw, 250px);
    height: clamp(100px, 20vw, 250px);
    margin: 0 auto;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
    background: #fff;
}

.centralise-title {
    color: white;
    font-size: clamp(16px, 3vw, 20px);
    margin: 0;
    font-weight: bold;
}

/* Consider Section */
.section-consider { 
    padding: 20px;
    background: var(--primary);
    background-image: linear-gradient(rgba(242, 74, 29, 0.1), rgba(242, 74, 29, 0.1));
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    position: relative;
}

.section-consider .container {
    padding: 54px 20px;
}

.consider-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
}

.consider-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.consider-icon {
    width: clamp(100px, 20vw, 250px);
    height: clamp(100px, 20vw, 250px);
    margin: 0 auto;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
    background: #FFD300;
}

.consider-title {
    color: white;
    font-size: clamp(16px, 3vw, 20px);
    margin: 0;
    font-weight: bold;
}

/* Manage Task Section */
.section-manage-task { 
    padding: 20px;
    background: #fff;
    background-image: linear-gradient(rgba(242, 74, 29, 0.05), rgba(242, 74, 29, 0.05)), url('../assets/manage-task-bg-2.png');
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    position: relative;
}

.section-manage-task .title-text-red {
    flex: 1;
    color: var(--primary);
}

.section-manage-task .manage-task-grid {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 22px;
    padding: 30px 0 54px;
    background: transparent;
}

.section-manage-task .manage-task-icons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-content: center;
    background: transparent;
    grid-column: 2;
}

.section-manage-task .manage-task-item { 
    text-align: center;
}

.section-manage-task .manage-task-icon {
    width: clamp(100px, 20vw, 300px);
    height: clamp(100px, 20vw, 300px);
    margin: 0 auto;
    border-radius: 0px;
    overflow: hidden;
}

.manage-task-text {
    margin: 14px 0 0 0;
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-dark);
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 720px) {
    .section-manage-task .manage-task-grid {
        grid-template-columns: 1fr;
    }

    .section-manage-task .manage-task-icons {
        grid-column: auto;
        justify-items: center;
    }
}

/* CRM Solution Section */
.section-crm-solution {
    padding: 20px 20px;
    text-align: center;
}

.crm-title {
    font-size: clamp(28px, 5vw, 48px);
    color: var(--primary);
    margin: 0 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.crm-cards-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 40px;
    position: relative;
    margin-bottom: 0;
}

.crm-card {
    background: #FEDFD9;
    border-radius: var(--radius);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    min-width: 260px;
    flex: 0 0 260px;
    scroll-snap-align: start;
    height: 280px;
}

.crm-card-title {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: bold;
    color: var(--text-dark);
    margin: 0;
}

.crm-card-text {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
    flex: 1;
    text-align: left;
}

.crm-card-icons {
    display: flex;
    gap: 16px;
    justify-content: end;
    margin-top: 10px;
}

.crm-card-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    transition: transform 0.3s ease;
    color: var(--text-dark);
}

.crm-card-icons a:hover {
    transform: scale(1.1);
}

.crm-card-icons svg {
    width: 24px;
    height: 24px;
}

.carousel-nav-prev-crm,
.carousel-nav-next-crm {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: background 0.3s ease;
}

.carousel-nav-prev-crm:hover,
.carousel-nav-next-crm:hover {
    background: #f5a800;
}

@media (max-width: 980px) {
    .section-crm-solution {
        padding: 60px 20px;
    }

    .crm-cards-grid {
        gap: 20px;
    }
}

@media (max-width: 720px) {
    .section-crm-solution {
        padding: 40px 20px;
    }

    .crm-title {
        gap: 10px;
    }

    .crm-cards-grid {
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* Help */
.section-help { background: #fff; }

.help-content {
    display: none;
}

.help-content-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding: 0 20px;
}

.help-card {
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.help-title {
    margin: 0;
    padding: 14px 16px;
    font-size: 19px;
    font-weight: 900;
    width: 100%;
}

.help-visual {
    aspect-ratio: 4 / 3;
    max-height: 36vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-text {
    margin: 0;
    padding: 12px 16px 16px;
    font-size: 19px;
    color: var(--text-muted);
}

.section-help-white {
    background: var(--primary);
}

.section-help-white .section-heading-white,
.section-help-white .section-lead-white {
    color: #fff;
}

/* Banner */
.section-banner { padding: 0; }

.banner-text {
    margin: 0;
    font-weight: 900;
    font-size: 24px;
    position: relative;
    display: inline-block;
}

.banner-text::before,
.banner-text::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #fff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.banner-text-black {
    margin: 0;
    font-weight: 900;
    font-size: 24px;
    position: relative;
    display: inline-block;
}

.banner-text-black::before,
.banner-text-black::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--text-dark);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.banner-text-black::before {
    left: -35px;
}

.banner-text::before {
    left: -35px;
}

.banner-text::after {
    right: -35px;
}

.banner-link {
    display: inline-block;
    margin-top: 8px;
    font-weight: 900;
    font-size: 24px;
    color: #fff;
    text-decoration: underline;
}

/* Logos */
.section-logos { 
    padding: 26px 0; 
    background: #fff; 
    overflow: hidden;
}

.logos-wrapper {
    overflow: hidden;
    padding: 0;
}

.logos-list {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    animation: scroll-logos 30s linear infinite;
    will-change: transform;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.logos-item {
    flex: 0 0 auto;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logos-item img {
    max-height: 100px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.logos-item:hover img {
    opacity: 1;
}

/* Case Hero */
.section-case-hero {
    background: #fff;
    padding: 20px 20px;
}

.case-hero-header {
    text-align: center;
    margin-bottom: 60px;
}

.case-hero-title {
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 700;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.red-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
}

.case-hero-subtitle {
    font-size: clamp(14px, 2vw, 32px);
    color: #333;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.case-logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    align-items: center;
    justify-items: center;
}

.logo-item {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (min-width: 720px) {
    .case-logos-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0px;
    }

    .logo-item:nth-child(1) {
        grid-column: auto;
    }

    .logo-item:nth-child(2) {
        grid-column: auto;
    }
    .logo-item:nth-child(3) {
        grid-column: auto;
    }

    .logo-item:nth-child(n+4) {
        grid-column: auto;
    }
}

/* Case Story */
.section-case-story {
    background: #fff;
    padding: 60px 20px;
}

.case-story-container {
    background: #fedfd9;
    padding: 20px;
    border-radius: 8px;
}

.case-story-header {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.case-story-title {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    color: #333;
    margin: 0;
}

.case-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.case-story-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.case-story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.case-story-content {
    padding: 0;
}

.case-story-heading {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.case-story-text {
    font-size: clamp(14px, 2vw, 16px);
    color: #666;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

@media (min-width: 720px) {
    .case-story-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .case-story-image {
        order: 1;
    }

    .case-story-content {
        order: 2;
    }
}

/* Cases */
.section-cases { background: #fff; }

.cases-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
    margin-right: 20px;
}

.cases-header .section-heading {
    text-align: center;
    padding-right: 0;
    margin: 0;
}

.cases-header .btn {
    flex-shrink: 0;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
    position: relative;
}

.carousel-nav-prev,
.carousel-nav-next {
    display: none;
}

.cases-carousel {
    flex: 1;
    overflow-x: hidden;
}

.cases-list {
    display: flex;
    gap: 14px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    animation: scroll-cases 30s linear infinite;
    will-change: transform;
}

@keyframes scroll-cases {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.case-card {
    flex: 0 0 clamp(200px, 22vw, 380px);
    background: #fff;
    border-radius: 0;
    border: 1px solid #e0e0e0;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
}

.case-thumb { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; background: var(--bg-soft); border-radius: 0; padding: 20px 20px 0 20px; }

.case-body { padding: 20px; padding-bottom: 50px; flex-grow: 1; }
.case-title { margin: 0 0 14px; font-size: clamp(14px, 1.8vw, 18px); font-weight: 700; line-height: 1.4; color: #000; }

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: auto;
}

.case-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    color: #ff0000;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.case-company { 
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
    margin: 0; 
    font-size: clamp(12px, 1.4vw, 14px); 
    color: #666; 
    font-weight: 400; 
    letter-spacing: 0.5px;
}

.case-arrow {
    display: none;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.carousel-nav-group {
    display: flex;
    gap: 10px;
}

.carousel-nav-prev,
.carousel-nav-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.carousel-nav-prev:hover,
.carousel-nav-next:hover {
    border-color: var(--text-dark);
    background: var(--bg-soft);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active { background: var(--text-dark); }

/* Story Around the World */
.section-case-story-around-world {
    padding: 60px 20px;
}

.story-world-header {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.story-world-title {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.story-world-carousel-wrapper {
    display: flex;
    flex-direction: column;
}

.story-world-carousel {
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.story-world-list {
    display: flex;
    padding: 20px;
    gap: 20px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    will-change: transform;
}

@keyframes scroll-story-world {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-1000px);
    }
}

.story-world-card {
    flex: 0 0 clamp(200px, 22vw, 280px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.story-world-card {
    flex: 0 0 clamp(200px, 22vw, 280px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.story-world-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
}

.story-world-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.story-world-card-title {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* Combined Card Style */
.story-world-card-combined {
    min-width: 40%;
    flex: 0 0 400px;
    display: flex;
    align-items: stretch;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.story-world-image-side {
    background-color: #e8e8e8;
    flex: 0 0 40%;
    overflow: hidden;
}

.story-world-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-world-content-side {
    flex: 0 0 60%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.story-world-card-desc {
    font-size: 14px;
    color: #666;
    margin: 12px 0 0 0;
    line-height: 1.5;
}

.story-world-link {
    display: inline-block;
    font-size: 12px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
    margin-top: auto;
}

.story-world-link:hover {
    opacity: 0.7;
}

.story-world-cta-card {
    background: #666;
}

.story-world-cta-card .story-world-card-title {
    color: #fff;
}

/* Carousel Dots Container */
.carousel-dots-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

/* Bottom Row without Images */
.story-world-bottom-wrapper {
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
}

.story-world-list-bottom {
    display: flex;
    gap: 20px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    animation: scroll-story-world-bottom 30s linear infinite;
    will-change: transform;
}

@keyframes scroll-story-world-bottom {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-1000px);
    }
}

.story-world-card-bottom {
    flex: 0 0 clamp(200px, 22vw, 280px);
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.story-world-bottom-title {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.story-world-bottom-text {
    font-size: 13px;
    color: #666;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.story-world-cta {
    background: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-world-cta .story-world-bottom-title {
    color: #fff;
    margin: 0;
    text-align: center;
}

/* Final CTA */
.section-final {
    background: #fff;
    background-image: url('../assets/cta-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 40px;
    height: 600px;
}

.section-final-what-kintone-can-do {
    background: #fff;
    background-image: url('../assets/cta-bg-3.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 40px;
    height: 500px;
}

.section-final-what-kintone-can-do .final-title {
    text-align: right;
    margin-bottom: 40px;
}

.section-final-what-kintone-can-do {
    margin-right: 10%;
    margin-left: 10%;
}

.section-final-what-kintone-can-do .final-copy {
    text-align: end;
}

.section-final-webinar {
    margin-top: 150px;
    background: #fff;
    background-image: url('../assets/resource-footer.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 40px;
    height: 500px;
}

.section-final-webinar .final-title {
    text-align: left;
}

.final-grid {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: clamp(16px, 3vw, 32px);
    align-items: center;
    height: 100%;
    position: relative;
}

.final-visual {
    display: none;
}

.final-title {
    margin: 0 0 clamp(18px, 2.5vh, 28px) 0;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 900;
}

.final-copy {
    grid-column: 2;
    text-align: center;
}

.final-copy .btn {
    display: inline-block;
}

#demo-2 .final-copy {
    grid-column: 2;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

#demo-4 .final-copy {
    text-align: right;
    margin-right: 20px;
}

#demo-4 .btn-large{
    align-items: left;
}

.section-final-webinar .final-copy {
    text-align: left !important;
}

#demo-2 .final-copy .final-title {
    flex: 1;
}

#demo-2 .final-grid {
    margin: 80px 20px;
}

#demo-2 .final-copy .btn-medium {
    padding: 14px 40px;
    font-size: 24px;
}

#demo-3{
    height: 500px;
}

#demo-3 .final-copy {
    grid-column: 2;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

#demo-3 .final-copy .final-title {
    flex: 1;
}

#demo-3 .final-grid {
    margin: 20px 20px;
}

#demo-3 .final-copy .btn-medium {
    padding: 14px 40px;
    font-size: 24px;
}

#demo-5 .final-visual {
    display: block;
    background-image: url('../assets/cta-final-visual-5.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    grid-column: 1;
}

#demo-5 .final-copy {
    grid-column: 2;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    align-items: start;
    column-gap: 40px;
}

#demo-5 .final-title {
    text-align: center;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    grid-column: 1;
    grid-row: 1;
    margin: 0;
}

#demo-5 .final-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
    grid-column: 1;
    grid-row: 2;
}

#demo-5 .final-copy .btn {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
}

#demo-5 .final-grid-resources {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: -150px;
}

#demo-5 .final-grid-resources .btn.right {
    align-self: flex-end;
    margin-top: 180px;
    margin-right: 20px;
}

.final-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--text-muted);
    margin: 0 0 24px 0;
    line-height: 1.4;
}

.section-trial-hero, .section-contact-hero {
    min-height: 30vh !important;
    background: var(--primary);
    padding: 80px 20px;
}

.trial-hero-container, .contact-hero-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-hero-title {
    color: #fff;
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 900;
    margin: 0 0 24px 0;
    line-height: 1.1;
}

.contact-hero-subtitle {
    color: #fff;
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.section-contact-form {
    background: #fff;
    padding: 60px 20px 80px;
}

.contact-form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-header {
    margin-bottom: 48px;
}

.contact-form-title {
    font-size: clamp(28px, 6vw, 48px);
    color: var(--text-dark);
    font-weight: 900;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.contact-form-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.contact-form-wrapper {
    background: #fff;
}

/* HubSpot Form Styling */
.trial-form-wrapper, .contact-form-wrapper{
    width: 100%;
}

.trial-form-wrapper label, .contact-form-wrapper label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.trial-form-wrapper label .hs-form-required, .contact-form-wrapper label .hs-form-required {
    color: var(--primary);
    margin-left: 4px;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.trial-form-wrapper input[type="text"],
.trial-form-wrapper input[type="email"],
.trial-form-wrapper input[type="tel"],
.trial-form-wrapper select,
.trial-form-wrapper textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.trial-form-wrapper textarea, .contact-form-wrapper textarea {
    min-height: 120px;
    resize: vertical;
}

.trial-form-wrapper .hs-fieldtype-radio label, .contact-form-wrapper .hs-fieldtype-radio label {
    display: inline-flex;
    align-items: center;
    margin-right: 24px;
    margin-bottom: 12px;
    font-weight: 400;
}

.trial-form-wrapper input[type="radio"], .contact-form-wrapper input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
}

.trial-form-wrapper .hs-fieldtype-checkbox label, .contact-form-wrapper .hs-fieldtype-checkbox label {
    display: flex;
    align-items: flex-start;
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 16px;
}

.trial-form-wrapper input[type="checkbox"], .contact-form-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.trial-form-wrapper input[type="submit"], .contact-form-wrapper input[type="submit"] {
    margin-top: 20px;
    background: var(--secondary);
    color: #000;
    border: none;
    padding: 12px 40px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trial-form-wrapper input[type="submit"]:hover, .contact-form-wrapper input[type="submit"]:hover {
    background: #f5a800;
    transform: translateY(-2px);
}

.trial-form-wrapper .hs-form-private-data, .contact-form-wrapper .hs-form-private-data {
    margin-bottom: 20px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 720px) {
    .section-contact-hero {
        padding: 40px 20px;
    }

    .contact-hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .contact-hero-subtitle {
        font-size: 16px;
    }

    .section-contact-form {
        padding: 40px 20px 60px;
    }

    .contact-form-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .contact-form-wrapper .hbspt-form label {
        font-size: 14px;
    }

    .contact-form-wrapper .hbspt-form .hs-fieldtype-radio label {
        display: block;
        margin-right: 0;
        margin-bottom: 12px;
    }
}

/* Trial Page Styling */
.section-trial-hero {
    background: var(--primary);
    padding: 80px 20px;
}

.trial-hero-title {
    color: #fff;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.trial-hero-subtitle {
    color: #fff;
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.section-trial-form {
    background: #fff;
    padding: 60px 20px 80px;
}

.trial-form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.trial-form-header {
    margin-bottom: 48px;
}

.trial-form-title {
    font-size: clamp(28px, 6vw, 48px);
    color: var(--text-dark);
    font-weight: 900;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.trial-form-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.trial-form-wrapper {
    background: #fff;
}

/* HubSpot Form Styling for Trial */
.trial-form-wrapper .hbspt-form {
    max-width: 700px;
    margin: 0 auto;
}

.trial-form-wrapper .hbspt-form label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.trial-form-wrapper .hbspt-form label span {
    display: inline;
}

.trial-form-wrapper .hbspt-form label .hs-form-required {
    color: var(--primary);
    margin-left: 4px;
}

.trial-form-wrapper .hbspt-form fieldset {
    border: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.trial-form-wrapper .hbspt-form .form-columns-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.trial-form-wrapper .hbspt-form .form-columns-1 {
    display: block;
}

.trial-form-wrapper .hbspt-form .hs-form-field {
    margin-bottom: 0;
}

.trial-form-wrapper .hbspt-form input[type="text"],
.trial-form-wrapper .hbspt-form input[type="email"],
.trial-form-wrapper .hbspt-form input[type="tel"],
.trial-form-wrapper .hbspt-form select,
.trial-form-wrapper .hbspt-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #999;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    box-sizing: border-box;
    color: var(--text-dark);
}

.trial-form-wrapper .hbspt-form textarea {
    min-height: 140px;
    resize: vertical;
}

.trial-form-wrapper .hbspt-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.trial-form-wrapper .hbspt-form .hs-fieldtype-radio {
    margin-bottom: 24px;
}

.trial-form-wrapper .hbspt-form .hs-fieldtype-radio .inputs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trial-form-wrapper .hbspt-form .hs-fieldtype-radio .hs-form-radio {
    margin-bottom: 16px;
}

.trial-form-wrapper .hbspt-form .hs-fieldtype-radio label {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 15px;
    margin: 0;
    cursor: pointer;
}

.trial-form-wrapper .hbspt-form input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.trial-form-wrapper .hbspt-form .hs-fieldtype-checkbox {
    margin-bottom: 24px;
}

.trial-form-wrapper .hbspt-form .hs-fieldtype-checkbox .inputs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trial-form-wrapper .hbspt-form .hs-fieldtype-checkbox .hs-form-checkbox {
    margin-bottom: 16px;
}

.trial-form-wrapper .hbspt-form .hs-form-checkbox-display {
    display: flex;
    align-items: flex-start;
    font-weight: 400;
    font-size: 15px;
    margin: 0;
    cursor: pointer;
}

.trial-form-wrapper .hbspt-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.trial-form-wrapper .hbspt-form .hs-fieldtype-booleancheckbox {
    margin-bottom: 28px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
}

.trial-form-wrapper .hbspt-form .hs-fieldtype-booleancheckbox legend {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 400;
}

.trial-form-wrapper .hbspt-form .hs-fieldtype-booleancheckbox .inputs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trial-form-wrapper .hbspt-form .hs-form-booleancheckbox {
    margin: 0;
}

.trial-form-wrapper .hbspt-form .hs-form-booleancheckbox-display {
    display: flex;
    align-items: flex-start;
    font-size: 13px;
    margin: 0;
}

.trial-form-wrapper .hbspt-form .hs-form-booleancheckbox-display input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.trial-form-wrapper .hbspt-form .hs-form-booleancheckbox-display span {
    line-height: 1.4;
    color: var(--text-muted);
}

.trial-form-wrapper .hbspt-form .hs-form-booleancheckbox-display a {
    color: var(--primary);
    text-decoration: none;
}

.trial-form-wrapper .hbspt-form .hs-form-booleancheckbox-display a:hover {
    text-decoration: underline;
}

.trial-form-wrapper .hbspt-form .hs-recaptcha {
    margin-bottom: 24px;
}

.trial-form-wrapper .hbspt-form .hs-submit {
    margin-top: 32px;
    text-align: center;
}

.trial-form-wrapper .hbspt-form input[type="submit"] {
    background: var(--secondary);
    color: #000;
    border: none;
    padding: 14px 48px;
    border-radius: 28px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trial-form-wrapper .hbspt-form input[type="submit"]:hover {
    background: #f5a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 74, 29, 0.2);
}

@media (max-width: 720px) {
    .section-trial-hero {
        padding: 40px 20px;
    }

    .trial-hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .trial-hero-subtitle {
        font-size: 16px;
    }

    .section-trial-form {
        padding: 40px 20px 60px;
    }

    .trial-form-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .trial-form-wrapper .hbspt-form label {
        font-size: 14px;
    }

    .trial-form-wrapper .hbspt-form .hs-fieldtype-radio label {
        display: block;
        margin-right: 0;
        margin-bottom: 12px;
    }
}

/* Footer */
.site-footer {
    color: #fff;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-left {
    flex: 0 0 auto;
}

.store-badges {
    display: flex;
    gap: 12px;
    align-items: center;
}

.store-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    transition: opacity 0.2s;
}

.store-badge:hover {
    opacity: 0.85;
}

.store-badge img {
    height: 32px;
    width: auto;
}

.store-text {
    display: block;
    text-align: center;
    max-width: 70px;
    font-size: 10px;
    line-height: 1.2;
}

.footer-center {
    flex: 1;
    min-width: 0;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.footer-nav a {
    color: #000000;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: opacity 0.2s;
}

.footer-nav a:hover {
    opacity: 0.85;
}

.footer-right {
    flex: 0 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 25px;
}

.footer-logo { height: 60px; width: auto; filter: brightness(1.2); padding-right: 30px;}

.footer-copyright {
    margin: 0;
    font-size: 11px;
    opacity: 0.9;
}

.include-error {
    padding: 14px;
    border: 1px dashed var(--border);
    border-radius: 12px;
    color: var(--text-muted);
    background: var(--bg-soft);
    margin: 10px 0;
}

/* Anchor offset for sticky header */
#what, #cases, #pricing, #resources, #inquiry, #demo { scroll-margin-top: 90px; }

/* Responsive */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: clamp(14px, 2vh, 20px); }
    .about-background { width: 100%; }
    .about-grid { max-width: 100%; }
    .about-cards { grid-template-columns: 1fr; }
    .problems-grid { grid-template-columns: 1fr; }
    .help-grid { grid-template-columns: 1fr; }
    .case-card { flex: 0 0 clamp(180px, 45vw, 300px); }
    .carousel-controls { gap: 18px; }
    .carousel-nav-group { gap: 8px; }
    .carousel-nav-prev,
    .carousel-nav-next { width: 36px; height: 36px; font-size: 16px; }
    .final-grid { grid-template-columns: 1fr; }
    .logos-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .site-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 6px 0;
        scrollbar-width: none;
    }

    .site-nav::-webkit-scrollbar { display: none; }
}

@media (max-width: 720px) {
    .header-inner { gap: 12px; }

    .header-actions {
        gap: 8px;
    }

    .btn-language {
        padding: 6px 10px;
        font-size: 11px;
    }

    .hero,
    .section {
        min-height: 45vh;
    }

    .brand-logo { height: 40px; }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 14px 20px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    }
    
    .hero-highlight {
        font-size: clamp(20px, 8vh, 48px);
    }
    
    .site-header.nav-open .site-nav { display: flex; }

    .site-nav a {
        font-size: 14px;
        gap: 10px;
    }

    .site-nav a::before {
        content: "";
        width: 8px;
        height: 8px;
        background: var(--primary);
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        flex: 0 0 auto;
    }

    .site-header { position: fixed; left: 0; right: 0; }
    .header-inner { position: relative; }

    .nav-toggle { display: inline-flex; }

    .btn-primary { padding: 12px 16px; font-size: 14px; }
    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        background-size: cover;
        background-position: center;
    }

    .section-about {
        grid-template-columns: 1fr;
        background-size: cover;
        background-position: center;
        padding: 20px;
    }

    .section-about .container {
        grid-column: 1;
    }

    .about-cards { 
        grid-template-columns: 1fr;
        align-items: center;
        justify-items: center;
    }

    .info-card {
        width: 100%;
        max-width: 280px;
    }

    .info-card--center {
        max-width: 280px;
    }

    .hero-title {
        margin-bottom: clamp(10px, 1.5vh, 16px);
    }

    .hero-line-spacer { height: clamp(12px, 2vh, 20px); }

    .section-bar-title { font-size: 22px; }
    .section-heading { font-size: 26px; }
    .video-grid { grid-template-columns: 1fr; }
    .case-card { flex: 0 0 clamp(150px, 80vw, 280px); }
    .cases-header { flex-direction: column; align-items: center; gap: 16px; justify-content: center; }
    .cases-header .section-heading { text-align: center; padding-right: 0; }
    .carousel-controls { gap: 14px; }
    .carousel-nav-group { gap: 6px; }
    .carousel-dot { width: 6px; height: 6px; }
    .carousel-nav-prev,
    .carousel-nav-next { width: 32px; height: 32px; font-size: 14px; }
    
    .cases-list {
        animation: scroll-cases 20s linear infinite;
    }
    
    .section-problems {
        min-height: auto;
        background-position: bottom;
    }
    
    .problems-grid { grid-template-columns: 1fr; background-size: cover; background-position: center; }
    .problems-icons { 
        display: flex;
        grid-template-columns: unset;
        flex-direction: row;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 10px;
        grid-column: auto;
    }

    .help-grid {
        grid-template-columns: 1fr;
        display: grid;
        gap: 14px;
        padding: 0 20px;
    }

    .help-card {
        flex: unset;
    }

    .problem-item {
        flex: 0 0 auto;
        min-width: 120px;
    }

    .problem-icon {
        width: clamp(80px, 25vw, 120px);
        height: clamp(80px, 25vw, 120px);
    }
    
    .logos-list {
        gap: 20px;
        animation: scroll-logos 20s linear infinite;
    }
    
    .logos-item {
        height: 40px;
    }
    
    .logos-item img {
        max-height: 40px;
        max-width: 100px;
    }

    /* Footer responsive */
    .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .footer-left {
        flex: 1;
        width: 100%;
    }

    .footer-center {
        flex: 1;
        width: 100%;
    }

    .footer-nav {
        flex-direction: column;
        gap: 12px;
        justify-content: center;
    }

    .footer-right {
        flex: 1;
        width: 100%;
    }
}

/* How Kintone Help You Section - Red Background */
#how-kintone-help-you {
    background: linear-gradient(135deg, #f24a1d 0%, #ff6b3d 100%);
    color: white;
}

#what .section-heading {
    color: var(--primary);
}

#how-kintone-help-you .section-heading {
    color: white;
}

#how-kintone-help-you .heading-dot {
    color: white;
}

#how-kintone-help-you .section-lead {
    color: white;
}

#how-kintone-help-you .help-title {
    color: white;
}

#how-kintone-help-you .help-text {
    color: white;
}

/* Introduction 2 Section */
.section-introduction-2 {
    padding: 80px 20px;
    text-align: center;
    background: #f8fafc;
}

.section-introduction-2 .section-heading {
    font-size: clamp(28px, 5vw, 48px);
    color: var(--primary);
    margin: 0 0 30px 0;
    position: relative;
    display: inline-block;
}

.section-introduction-2 .heading-hexagon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 20px;
    background: var(--primary);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.introduction-2-subtitle {
    font-size: clamp(18px, 4vw, 32px);
    color: var(--text-dark);
    margin: 0 0 50px 0;
    font-weight: bold;
}

.section-introduction-2 .video-card {
    max-width: 900px;
    margin: 0 auto 50px;
    text-decoration: none;
    border-radius: var(--radius);
    overflow: hidden;
}

.section-introduction-2 .video-thumb {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.section-introduction-2 .video-caption {
    text-align: center;
    margin-top: 20px;
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-dark);
    font-weight: 500;
}

.introduction-2-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(242, 74, 29, 0.3);
}

.introduction-2-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(242, 74, 29, 0.4);
}

.introduction-2-play-button svg {
    width: 40px;
    height: 40px;
    margin-left: 5px;
}

.introduction-2-description {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--text-dark);
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (max-width: 980px) {
    .section-introduction-2 {
        padding: 60px 20px;
    }

    .introduction-2-play-button {
        width: 80px;
        height: 80px;
    }

    .introduction-2-play-button svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 720px) {
    .section-introduction-2 {
        padding: 40px 20px;
    }

    .introduction-2-play-button {
        width: 60px;
        height: 60px;
    }

    .introduction-2-play-button svg {
        width: 24px;
        height: 24px;
    }

    .section-introduction-2 .heading-hexagon {
        display: none;
    }
}

/* Section Our Resources */
.section-our-resources {
    background: var(--primary);
    padding: 80px 20px;
    text-align: center;
}

.resources-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.resources-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(242, 74, 29, 0.2);
    border-radius: var(--radius);
    overflow: hidden;
}

.resources-card-header-section {
    background: var(--secondary);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.resources-card-button-section {
    background: white;
    padding: 24px 30px;
    display: flex;
    justify-content: center;
}

.resources-card-header {
    display: flex;
    align-items: center;
}

.resources-card-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: bold;
    color: var(--text-dark);
    margin: 0;
    flex: 0 0 40%;
    text-align: left;
}

.resources-card-title-webinars {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: bold;
    color: #fff;
    margin: 0;
    flex: 0 0 40%;
    text-align: left;
}

.resources-card-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    flex: 0 0 60%;
}

.resources-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.resources-btn {
    background: var(--secondary);
    border: none;
    border-radius: 24px;
    padding: 12px 24px;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: bold;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "Proxima Nova";
}

.resources-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 181, 0, 0.3);
}

.icon-download {
    width: 18px;
    height: 18px;
}

.resources-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.resources-description {
    font-size: clamp(16px, 3vw, 28px);
    color: #fff;
    line-height: 1.8;
    margin: 0;
}

.resources-description .final-highlight{
    background-color: #fff;
    color: var(--primary);
}

.resources-description .hero-tag{
    border: 1px solid #fff;
}

.resources-description .hero-tag,
.resources-description .final-highlight {
    font-size: clamp(16px, 3vw, 28px) !important;
}

.resources-cta-btn {
    background: var(--secondary);
    border: none;
    border-radius: 24px;
    padding: 14px 32px;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: bold;
    color: var(--text-dark);
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "Proxima Nova";
    width: fit-content;
}

.resources-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 181, 0, 0.3);
}

@media (max-width: 980px) {
    .section-our-resources {
        padding: 60px 20px;
    }

    .resources-content {
        gap: 40px;
    }
}

@media (min-width: 981px) {
    .section-our-resources .resources-card {
        margin-left: 150px;
    }

    .section-section-downloadable-resources .resources-card {
        margin-left: 0px;
    }
}

@media (max-width: 720px) {
    .section-our-resources {
        padding: 40px 20px;
    }

    .resources-title {
        gap: 10px;
    }

    .resources-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .resources-cta-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .resources-card {
        margin-left: 30px;
    }

    .section-downloadable-resources .resources-card {
        margin-left: 0px;
    }

    .btn-large {
        padding: 12px 30px;
        font-size: 24px;
    }

    .btn-medium {
        padding: 12px 25px;
        font-size: 18px;
    }

    .btn-primary{
        padding: 12px 12px;
        font-size: 8px;
    }
}

/* User Voices Section */
.section-case-user-voices {
    background: #ef3f24;
    padding: 80px 20px;
}

.user-voices-container {
    max-width: 1200px;
    margin: 0 auto;
}

.user-voices-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.user-voices-header {
    flex: 0 0 30%;
    padding-top: 20px;
}

.user-voices-title {
    font-size: clamp(32px, 6vw, 80px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.user-voices-subtitle {
    font-size: clamp(14px, 2vw, 48px);
    color: #fff;
    opacity: 0.95;
    margin: 0;
    line-height: 1.6;
}

.user-voices-carousel-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.user-voices-carousel {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.user-voices-list {
    display: flex;
    gap: 24px;
    scroll-snap-type: x mandatory;
    will-change: transform;
    min-width: min-content;
}

.user-voice-card {
    flex: 0 0 300px;
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.voice-rating {
    display: flex;
    gap: 4px;
}

.voice-star {
    font-size: 18px;
    color: var(--secondary);
}

.voice-text {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.voice-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.voice-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.voice-title {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.carousel-nav-controls {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 16px;
    align-self: flex-end;
}

.carousel-nav-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-nav-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: #fff;
}

@media (max-width: 980px) {
    .section-case-user-voices {
        padding: 60px 20px;
    }

    .user-voices-content {
        flex-direction: column;
        gap: 40px;
    }

    .user-voices-header {
        flex: 0 0 auto;
        padding-top: 0;
    }

    .user-voices-carousel-wrapper {
        flex: 0 0 auto;
    }

    .user-voice-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 720px) {
    .section-case-user-voices {
        background: linear-gradient(180deg, #f24a1d 0%, #f24a1d 40%, #555 40%, #555 100%);
        padding: 40px 20px;
    }

    .user-voices-header {
        margin-bottom: 40px;
    }

    .user-voices-title {
        font-size: 32px;
    }

    .user-voices-subtitle {
        font-size: 14px;
    }

    .user-voice-card {
        flex: 0 0 260px;
        padding: 20px;
    }

    .carousel-nav-controls {
        justify-content: center;
    }
}

/* Pricing Overview Section */
.section-pricing-overview {
    background: var(--primary);
    padding: 80px 20px;
    text-align: center;
}

.pricing-overview-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-overview-header {
    margin-bottom: 60px;
}

.pricing-overview-title {
    font-size: clamp(28px, 5vw, 48px);
    color: #fff;
    margin: 0 0 20px 0;
    font-weight: 900;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.pricing-overview-lead {
    font-size: clamp(16px, 2.5vw, 24px);
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.6;
    font-weight: 500;
}

.pricing-overview-secondary {
    font-size: clamp(14px, 2vw, 16px);
    color: #fff;
    margin: 0;
    opacity: 0.95;
    line-height: 1.5;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(242, 74, 29, 0.25);
    border: 6px solid var(--primary);
}

.pricing-card-header {
    padding: 16px 20px;
    font-weight: 900;
    font-size: 18px;
    color: #fff;
}

.pricing-card-header.professional {
    background: var(--secondary);
    color: #fff;
}

.pricing-card-header.custom {
    background: #f27965;
    color: #fff;
}

.pricing-card-body {
    padding: 30px 20px;
}

.pricing-amount-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.pricing-right-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pricing-amount {
    font-size: clamp(40px, 10vw, 64px);
    font-weight: 900;
    color: var(--text-dark);
    margin: 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing-period {
    font-size: 18px;
    color: #000;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
    text-align: right;
}

.pricing-divider {
    width: 40px;
    height: 3px;
    background: var(--text-dark);
    margin: 0;
}

.pricing-original {
    font-size: 18px;
    color: var(--text-dark);
    text-decoration: line-through;
    text-align: right;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 14px;
    color: #333;
    line-height: 0.8;
}

.pricing-features li {
    margin-bottom: 8px;
}

.pricing-features li:before {
    content: "• ";
    color: var(--primary);
    font-weight: bold;
    margin-right: 8px;
}

.btn-trial {
    display: inline-block;
    margin-bottom: 20px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 24px;
    border: 2px solid var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-trial-outline {
    background: #fff;
    color: var(--primary);
}

.btn-trial-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-trial-solid {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-trial-solid:hover {
    background: #d63d1a;
    border-color: #d63d1a;
}

.pricing-note {
    font-size: 14px;
    color: #fff;
    opacity: 0.9;
}

.pricing-cta {
    margin: 30px 0;
}

.pricing-cta .btn-medium {
    padding: 14px 40px !important;
    font-size: 24px !important;
}

.pricing-footer {
    font-size: 18px;
    color: #fff;
    margin: 0;
    opacity: 0.85;
}

.section-pricing-support {
    background: #fff;
    padding: 80px 20px;
}

.pricing-support-container {
    max-width: 1200px;
    margin: 0 auto;
}

.support-title {
    text-align: center;
    font-size: clamp(28px, 6vw, 48px);
    color: var(--primary);
    margin: 0 0 60px 0;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.heading-dot-primary {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.support-left {
    background: #fde4e4;
    padding: 40px;
    border-radius: 16px;
}

.support-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.support-list li {
    font-size: 27px;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.support-list li:before {
    content: "•";
    color: var(--primary);
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -2px;
}

.support-list li:last-child {
    margin-bottom: 0;
}

.support-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
}

.pricing-separator {
    height: 100px;
    background: var(--primary);
    width: 100%;
}

@media (max-width: 980px) {
    .support-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-pricing-support {
        padding: 60px 20px;
    }
}

@media (max-width: 720px) {
    .support-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .support-left {
        padding: 30px;
    }

    .support-list li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .section-pricing-support {
        padding: 40px 20px;
    }
}

@media (max-width: 720px) {
    .section-pricing-overview {
        padding: 60px 20px;
    }

    .pricing-overview-header {
        margin-bottom: 40px;
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .pricing-overview-title {
        gap: 12px;
    }

    .pricing-card-body {
        padding: 20px 16px;
    }

    .pricing-amount {
        font-size: 32px;
    }
}
