:root {
    --bg: #f7fbfd;
    --bg-soft: #eef8f6;
    --text: #24323f;
    --muted: #647381;
    --line: #dbe8ee;
    --white: #ffffff;
    --primary: #1b75bb;
    --primary-dark: #125b92;
    --accent: #42b8a6;
    --accent-soft: #dff6f1;
    --shadow: 0 18px 45px rgba(39, 82, 115, 0.12);
    --radius: 24px;
    --radius-sm: 14px;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.75;
    letter-spacing: 0.02em;
}

img {
    max-width: 100%;
}

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

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    width: min(760px, calc(100% - 40px));
}

.center {
    text-align: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(219, 232, 238, 0.75);
    box-shadow: 0 8px 24px rgba(39, 82, 115, 0.06);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-weight: 900;
    white-space: nowrap;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 0;
    border-radius: 14px;
    background: transparent;
    box-shadow: 0 12px 24px rgba(27, 117, 187, 0.18);
    overflow: hidden;
    flex: 0 0 auto;
}

.brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.brand-text {
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.03em;
}

.brand-text small {
    display: inline-block;
    margin-left: 8px;
    padding-left: 12px;
    border-left: 1px solid #9fb1bf;
    font-size: 14px;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: 0.03em;
    vertical-align: middle;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    margin-left: auto;
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

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

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 162px;
    min-height: 54px;
    padding: 13px 26px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 12px 24px rgba(27, 117, 187, 0.20);
    font-weight: 900;
    font-size: 16px;
    white-space: nowrap;
}

.section {
    padding: 82px 0;
}

.section-soft {
    background: radial-gradient(circle at top left, rgba(66, 184, 166, 0.18), transparent 34%), linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
}

.hero {
    padding: 84px 0 96px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 42px;
    align-items: center;
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero .eyebrow {
    margin-bottom: 28px;
    font-size: clamp(16px, 1.35vw, 18px);
}

.hero h1 {
    margin: 0;
    font-size: clamp(34px, 4.7vw, 56px);
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.hero-lead {
    margin: 40px 0 0;
    font-size: clamp(18px, 2.2vw, 24px);
    color: var(--muted);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 42px;
}

.hero-actions .button {
    width: 236px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 24px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button.primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 15px 25px rgba(27, 117, 187, 0.2);
}

.button.secondary {
    color: var(--primary-dark);
    background: var(--white);
    border: 1px solid var(--line);
}

.hero-card {
    display: flex;
    justify-content: center;
}

.mail-window {
    width: min(420px, 100%);
    padding: 22px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.75);
}

.window-dots {
    display: flex;
    gap: 7px;
    margin-bottom: 22px;
}

.window-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--line);
}

.mail-row {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 18px;
    margin-top: 14px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--line);
}

.mail-row span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-weight: 900;
}

.mail-row.good span { background: #e6f7ef; color: #1d8a55; }
.mail-row.warn span { background: #fff4df; color: #d88400; }
.mail-row.share span { background: #e7f1fb; color: var(--primary); }
.mail-row small { color: var(--muted); }

h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.35;
}

.section-lead {
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 18px;
}

.section-lead.left {
    margin-left: 0;
}

.worry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 54px;
}

.worry-card,
.feature-card,
.price-card,
.about-card,
.contact-form,
.trial-box {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(39, 82, 115, 0.08);
}

.worry-card {
    position: relative;
    overflow: hidden;
    padding: 34px 30px 32px;
    text-align: center;
}

.worry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 12%, rgba(66, 184, 166, 0.12), transparent 36%);
    pointer-events: none;
}

.worry-card > * {
    position: relative;
    z-index: 1;
}

.worry-illustration {
    position: relative;
    width: 170px;
    height: 126px;
    margin: 0 auto 22px;
    border-radius: 38px;
    background: linear-gradient(135deg, #f2fbf9, #e8f4fb);
    box-shadow: inset 0 0 0 1px rgba(219, 232, 238, 0.9), 0 18px 34px rgba(39, 82, 115, 0.10);
}

.worry-illustration::before {
    content: "";
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    right: 14px;
    top: 16px;
    background: rgba(66, 184, 166, 0.16);
}

.ill-mail {
    position: absolute;
    display: block;
    width: 76px;
    height: 50px;
    border-radius: 14px;
    background: #ffffff;
    border: 2px solid #d7e7ef;
    box-shadow: 0 12px 22px rgba(39, 82, 115, 0.10);
}

.ill-mail::before,
.ill-mail::after {
    content: "";
    position: absolute;
    top: 16px;
    width: 35px;
    height: 2px;
    background: #9db7c6;
}

.ill-mail::before {
    left: 7px;
    transform: rotate(28deg);
}

.ill-mail::after {
    right: 7px;
    transform: rotate(-28deg);
}

.worry-illustration.spam .ill-mail.main {
    left: 46px;
    top: 36px;
}

.worry-illustration.spam .ill-mail.sub.one {
    width: 54px;
    height: 36px;
    left: 22px;
    top: 62px;
    opacity: 0.75;
    transform: rotate(-10deg);
}

.ill-badge {
    position: absolute;
    right: 38px;
    top: 28px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #c27400;
    background: #fff2d8;
    font-weight: 900;
    font-size: 24px;
    box-shadow: 0 10px 18px rgba(194, 116, 0, 0.12);
}

.ill-line {
    position: absolute;
    left: 58px;
    bottom: 22px;
    width: 56px;
    height: 8px;
    border-radius: 999px;
    background: #dff6f1;
}

.worry-illustration.delivery .ill-mail.main {
    left: 34px;
    top: 38px;
}

.ill-search {
    position: absolute;
    right: 34px;
    top: 42px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 7px solid #dff6f1;
    background: rgba(255,255,255,0.78);
}

.ill-search::after {
    content: "";
    position: absolute;
    right: -15px;
    bottom: -7px;
    width: 28px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent);
    transform: rotate(42deg);
}

.ill-dot {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.22;
}

.ill-dot.one { width: 12px; height: 12px; left: 26px; top: 24px; }
.ill-dot.two { width: 9px; height: 9px; right: 24px; bottom: 24px; }

.worry-illustration.share .ill-mail.main {
    left: 48px;
    top: 50px;
}

.ill-person {
    position: absolute;
    display: block;
    width: 34px;
    height: 34px;
    border-radius: 50% 50% 42% 42%;
    background: #ffffff;
    border: 2px solid #d7e7ef;
    box-shadow: 0 10px 18px rgba(39, 82, 115, 0.08);
}

.ill-person::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 52px;
    height: 30px;
    border-radius: 28px 28px 14px 14px;
    background: #e7f1fb;
    transform: translateX(-50%);
}

.ill-person.one { left: 28px; top: 25px; }
.ill-person.two { right: 28px; top: 25px; }

.ill-arrow {
    position: absolute;
    left: 72px;
    top: 28px;
    width: 26px;
    height: 26px;
    border-top: 4px solid var(--accent);
    border-right: 4px solid var(--accent);
    transform: rotate(45deg);
    border-radius: 3px;
}

.ill-arrow::before {
    content: "";
    position: absolute;
    right: -3px;
    top: -4px;
    width: 58px;
    height: 4px;
    border-radius: 999px;
    background: var(--accent);
    transform: rotate(-45deg) translate(14px, 17px);
    transform-origin: right center;
}

.feature-icon {
    display: inline-grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border-radius: 22px;
    background: var(--accent-soft);
    color: var(--primary-dark);
    font-size: 30px;
}

.worry-card h3,
.feature-card h4 {
    margin: 18px 0 8px;
    line-height: 1.45;
}

.worry-card h3 {
    font-size: 22px;
}

.worry-card p,
.feature-card p,
.note-text,
.small-note {
    color: var(--muted);
}

.note-text {
    margin: 54px auto 0;
    font-size: 17px;
}

.feature-block {
    margin-top: 54px;
    padding: 34px;
    border: 1px solid rgba(219, 232, 238, 0.95);
    border-radius: 32px;
    box-shadow: 0 16px 38px rgba(39, 82, 115, 0.08);
}

.feature-block + .feature-block {
    margin-top: 44px;
}

.feature-mail {
    background: linear-gradient(135deg, #ffffff 0%, #eff8ff 100%);
}

.feature-data {
    background: linear-gradient(135deg, #ffffff 0%, #f0fbf6 100%);
}

.feature-security {
    background: linear-gradient(135deg, #ffffff 0%, #f7f4ff 100%);
}

.feature-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    box-shadow: 0 10px 22px rgba(39, 82, 115, 0.08);
    font-size: 25px;
}

.feature-title::before {
    content: "";
    width: 14px;
    height: 34px;
    border-radius: 99px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
}

.feature-data .feature-title::before {
    background: linear-gradient(180deg, #2f9b75, var(--accent));
}

.feature-security .feature-title::before {
    background: linear-gradient(180deg, #5267d8, var(--primary));
}

.card-grid {
    display: grid;
    gap: 20px;
}

.card-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.9);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(39, 82, 115, 0.11);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 24px;
    font-size: 32px;
}

.highlight-card {
    grid-column: span 3;
    background: linear-gradient(135deg, #ffffff, #f0fbf9);
}

.trial-box {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
    padding: 44px;
    align-items: center;
}

.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.steps li {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 14px;
    padding: 17px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fbfdfe;
}

.steps span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
    font-weight: 900;
}

.price-card {
    padding: 46px;
    text-align: center;
}

.price-box {
    display: inline-grid;
    align-items: center;
    justify-content: center;
    width: min(420px, 100%);
    margin: 30px auto 28px;
    padding: 22px 34px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    box-shadow: 0 15px 25px rgba(27, 117, 187, 0.18);
}

.price-box strong {
    display: block;
    font-size: 30px;
    line-height: 1.2;
}

.price-box small {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 700;
    opacity: 0.92;
}

.check-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.check-list span {
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--bg-soft);
    color: var(--primary-dark);
    font-weight: 700;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 42px;
}

.support-item {
    display: grid;
    gap: 10px;
    place-items: center;
    text-align: center;
    padding: 24px 16px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 8px 22px rgba(39, 82, 115, 0.07);
}

.support-item span {
    font-size: 30px;
}

.support-item p {
    margin: 0;
    font-weight: 800;
}

.about-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 34px;
    padding: 42px;
    align-items: start;
}

.about-avatar {
    display: block;
    width: 140px;
    height: 140px;
    border-radius: 38px;
    overflow: hidden;
    background: transparent;
    box-shadow: var(--shadow);
}

.about-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-list {
    display: grid;
    gap: 8px;
    margin: 24px 0 0;
}

.profile-list div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
}

.profile-list dt {
    color: var(--muted);
    font-weight: 700;
}

.profile-list dd {
    margin: 0;
    font-weight: 800;
}

.faq-list {
    width: min(var(--container), calc(100% - 40px));
    display: grid;
    gap: 12px;
    margin-top: 40px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    padding: 20px 56px 20px 22px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 26px;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
    width: min(var(--container), calc(100% - 40px));
}

.contact-copy {
    position: static;
    width: min(760px, 100%);
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    width: 100%;
    padding: 34px;
}

.form-field {
    display: block;
    margin-bottom: 28px;
    font-weight: 800;
}

.form-field > input,
.form-field > select,
.form-field > textarea {
    margin-top: 8px;
}

.form-field span,
legend span,
.privacy-check em {
    color: #e25b5b;
    font-style: normal;
}

legend {
    padding: 0;
    margin-bottom: 10px;
    font-weight: 800;
}

fieldset {
    border: 0;
    padding: 0;
    margin: 0 0 28px;
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

.radio-group label {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    padding: 11px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fbfdfe;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    white-space: nowrap;
}

.radio-group input[type="radio"] {
    width: auto;
    flex: 0 0 auto;
    margin: 0;
}

input,
select,
textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #cfdde4;
    border-radius: 12px;
    font: inherit;
    background: var(--white);
    color: var(--text);
}


input[type="radio"],
input[type="checkbox"] {
    width: auto;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(66, 184, 166, 0.22);
    border-color: var(--accent);
}

.form-row {
    display: grid;
    gap: 18px;
    margin-bottom: 28px;
}

.form-row .form-field {
    margin-bottom: 0;
}

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

.zip-row {
    grid-template-columns: 120px 18px 150px;
    align-items: center;
    gap: 8px;
}

.address-field select,
.address-field input {
    margin-top: 12px;
}

.field-label {
    color: var(--text) !important;
}

.privacy-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 18px 0 24px;
    font-weight: 700;
}

.privacy-check input {
    width: auto;
    margin-top: 7px;
}

.privacy-check a {
    color: var(--primary);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
}

.form-message {
    padding: 16px 18px;
    border-radius: 14px;
    margin-bottom: 18px;
}

.form-message.success {
    color: #146b43;
    background: #e7f8ef;
    border: 1px solid #b7e7cf;
}

.form-message.error {
    color: #8f2b2b;
    background: #fff0f0;
    border: 1px solid #f0caca;
}

.form-message ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.site-footer {
    padding: 56px 0 24px;
    color: #d9e8ef;
    background: #1f3447;
}

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

.footer-brand .brand-mark {
    box-shadow: none;
}

.footer-info p {
    margin: 0 0 8px;
}

.footer-links {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-links a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.copyright {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: #b8cbd6;
    font-size: 14px;
}

@media (max-width: 1180px) {
    .header-nav { display: none; }
}

@media (max-width: 1320px) {
    .header-nav { gap: 22px; font-size: 14px; }
    .header-cta { min-width: 146px; font-size: 15px; padding-inline: 22px; }
    .brand-text { font-size: 25px; }
}

@media (max-width: 920px) {
    .hero-grid,
    .trial-box,
    .contact-grid,
    .footer-grid,
    .about-card { grid-template-columns: 1fr; }
    .worry-grid,
    .card-grid.three { grid-template-columns: 1fr 1fr; }
    .highlight-card { grid-column: span 2; }
    .feature-block { padding: 26px; }
    .support-grid { grid-template-columns: repeat(2, 1fr); }
    .radio-group { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-copy { position: static; }
}

@media (max-width: 640px) {
    .container,
    .narrow,
    .faq-list { width: min(100% - 28px, var(--container)); }
    .header-inner { height: 70px; }
    .brand { gap: 10px; }
    .brand-mark { width: 42px; height: 42px; font-size: 27px; }
    .brand-text { font-size: 22px; }
    .brand-text small { display: none; }
    .header-cta { min-width: auto; min-height: 42px; padding: 9px 14px; font-size: 13px; }
    .section { padding: 68px 0; }
    .hero { padding: 58px 0 72px; }
    .hero-actions { display: grid; }
    .hero-actions .button { width: 100%; }
    .worry-grid,
    .card-grid.three,
    .support-grid,
    .form-row.two { grid-template-columns: 1fr; }

    .worry-illustration {
        width: 150px;
        height: 112px;
    }
    .highlight-card { grid-column: span 1; }
    .feature-block { padding: 20px; border-radius: 24px; }
    .feature-title { font-size: 21px; }
    .feature-icon { width: 62px; height: 62px; font-size: 28px; }
    .trial-box,
    .price-card,
    .about-card,
    .contact-form { padding: 24px; }
    
    .about-avatar {
        width: 96px;
        height: 96px;
        border-radius: 26px;
    }
    .profile-list div { grid-template-columns: 1fr; gap: 0; }
    .radio-group { grid-template-columns: 1fr; }
    .zip-row { grid-template-columns: 1fr 18px 1fr; }
}

/* ============================================================
   Worry section redesign: illustration-like cards
   ============================================================ */
#worries {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 0% 12%, rgba(66, 184, 166, 0.11), transparent 18%),
        radial-gradient(circle at 100% 25%, rgba(66, 184, 166, 0.11), transparent 16%),
        linear-gradient(180deg, #f8fdff 0%, #f4fbfb 100%);
}

#worries::before,
#worries::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    opacity: 0.18;
    background-image: radial-gradient(circle, var(--accent) 3px, transparent 4px);
    background-size: 24px 24px;
    pointer-events: none;
}

#worries::before {
    left: -20px;
    top: 22px;
}

#worries::after {
    right: -24px;
    top: 40px;
}

.trouble-kicker {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 22px;
    font-size: clamp(16px, 1.6vw, 22px);
    letter-spacing: 0.05em;
}

.trouble-kicker::before,
.trouble-kicker::after {
    content: "";
    width: 42px;
    height: 2px;
    border-radius: 99px;
    background: repeating-linear-gradient(90deg, var(--accent) 0 5px, transparent 5px 12px);
    transform: rotate(55deg);
}

.trouble-kicker::after {
    transform: rotate(-55deg);
}

.worries-main-title {
    font-size: clamp(30px, 3.4vw, 48px);
    letter-spacing: 0.04em;
}

#worries .section-lead {
    margin-top: 18px;
    font-size: 17px;
}

.worry-grid {
    gap: 28px;
    margin-top: 56px;
}

.worry-card {
    padding: 26px 34px 34px;
    border-radius: 28px;
    box-shadow: 0 22px 48px rgba(39, 82, 115, 0.10);
}

.worry-card::before {
    background: linear-gradient(180deg, rgba(255,255,255,.2), rgba(66,184,166,.05));
}

.worry-visual {
    width: min(100%, 310px);
    height: 220px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.worry-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.worry-card h3 {
    margin: 10px 0 8px;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.45;
    color: #152a44;
}

.worry-accent {
    display: block;
    width: 42px;
    height: 3px;
    margin: 14px auto 18px;
    border-radius: 99px;
    background: var(--accent);
}

.worry-card p {
    width: min(100%, 310px);
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.95;
    color: #26384b;
}

@media (max-width: 920px) {
    .worry-visual {
        height: 190px;
    }
}

@media (max-width: 640px) {
    .trouble-kicker {
        gap: 18px;
        font-size: 15px;
    }
    .trouble-kicker::before,
    .trouble-kicker::after {
        width: 28px;
    }
    .worry-card {
        padding: 24px 22px 30px;
    }
    .worry-visual {
        width: min(100%, 260px);
        height: 180px;
    }
}
